View | Details | Raw Unified | Return to bug 40875
Collapse All | Expand All

(-)a/management/univention-appcenter/python/appcenter/app.py (-1 / +1 lines)
 Lines 1001-1007   def _load_pickle_cache(cls): Link Here 
1001
			try:
1001
			try:
1002
				with open(pickle_file, 'rb') as fd:
1002
				with open(pickle_file, 'rb') as fd:
1003
					return load(fd)
1003
					return load(fd)
1004
			except (IOError, PickleError):
1004
			except (EOFError, EnvironmentError, PickleError):
1005
				return None
1005
				return None
1006
1006
1007
	@classmethod
1007
	@classmethod

Return to bug 40875