Skip to content
Snippets Groups Projects
Commit d37bdc7a authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

tryin to unpickle a GNU dbm file doesn't produce the same exception as bsddb....

tryin to unpickle a GNU dbm file doesn't produce the same exception as bsddb. Handle both. Fixes #7013
parent bb385241
No related branches found
No related tags found
No related merge requests found
......@@ -250,7 +250,7 @@ class GajimPluginConfig():
try:
self.data = cPickle.load(fd)
fd.close()
except EOFError:
except:
fd.close()
try:
import shelve
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment