Catch all errors while reading Glances version file

pull/893/head
nicolargo 2016-05-15 17:00:05 +02:00
parent faa7edfd64
commit 58fe124cf6
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ class Outdated(object):
try:
with open(os.path.join(self._cache_path(), 'glances-version.db'), 'rb') as f:
cached_data = pickle.load(f)
except (EOFError, IOError) as e:
except Exception as e:
logger.debug("Can not read the version cache file ({0})".format(e))
else:
logger.debug("Read the version cache file")