mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-06 14:55:06 +01:00
Ignore error loading saved GUI settings caused by change in PyQt
This commit is contained in:
parent
ccd626bb55
commit
9e1a17f5be
1 changed files with 2 additions and 0 deletions
|
|
@ -497,6 +497,8 @@ def refresh(self):
|
|||
raw = f.read()
|
||||
try:
|
||||
d = cPickle.loads(raw) if raw.strip() else {}
|
||||
except SystemError:
|
||||
pass
|
||||
except:
|
||||
import traceback
|
||||
traceback.print_exc()
|
||||
|
|
|
|||
Loading…
Reference in a new issue