FIX(buku) fix ValueError

- remove wrong ValueError reference (not from json.decoder
  but builtin)
This commit is contained in:
Chris Drexler 2018-12-19 20:03:13 +01:00
parent ccb40b5810
commit 61e4cdb7ea

2
buku
View File

@ -2391,7 +2391,7 @@ class BukuDb:
items = import_firefox_json(data, add_bookmark_folder_as_tag, newtag)
except json.decoder.ValueError as e:
except ValueError as e:
logerr("JSON Decode Error: {}".format(e))
return False
except Exception as e: