mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 22:06:02 +02:00
...
This commit is contained in:
parent
68448106a6
commit
12fffc051e
1 changed files with 5 additions and 2 deletions
|
|
@ -207,8 +207,11 @@ def sync_booklists(self, booklists, end_session=True):
|
|||
c = self.initialize_XML_cache()
|
||||
blists = {}
|
||||
for i in c.paths:
|
||||
if booklists[i] is not None:
|
||||
blists[i] = booklists[i]
|
||||
try:
|
||||
if booklists[i] is not None:
|
||||
blists[i] = booklists[i]
|
||||
except IndexError:
|
||||
pass
|
||||
opts = self.settings()
|
||||
if opts.extra_customization:
|
||||
collections = [x.strip() for x in
|
||||
|
|
|
|||
Loading…
Reference in a new issue