mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-06 09:44:28 +01:00
py3 compat
This commit is contained in:
parent
daefabde4c
commit
5ab0639d1f
1 changed files with 1 additions and 1 deletions
|
|
@ -314,7 +314,7 @@ def _spine_add_extra(self):
|
|||
unchecked = new
|
||||
version = int(self.oeb.version[0])
|
||||
removed_items_to_ignore = getattr(self.oeb, 'removed_items_to_ignore', ())
|
||||
for item in sorted(extras):
|
||||
for item in extras:
|
||||
if item.href in removed_items_to_ignore:
|
||||
continue
|
||||
if version >= 2:
|
||||
|
|
|
|||
Loading…
Reference in a new issue