Skip to content
Snippets Groups Projects
Commit e042d6bb authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Pickle functions sometimes raise EOFError

parent 73b415bd
No related branches found
No related tags found
No related merge requests found
......@@ -372,7 +372,7 @@ class Settings(object):
try:
with open(configFile, 'rb') as f:
return pickle.load(f)
except (IOError, pickle.UnpicklingError):
except (IOError, pickle.UnpicklingError, EOFError):
log.debug('Unable to load stored {} configuration file '
'{}'.format(self.__configID, configFile),
exc_info=True)
......@@ -391,7 +391,7 @@ class Settings(object):
try:
with open(configFile, 'wb') as f:
pickle.dump(config, f)
except (IOError, pickle.PicklingError):
except (IOError, pickle.PicklingError, EOFError):
log.warning('Unable to save {} configuration file '
'{}'.format(self.__configID, configFile),
exc_info=True)
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