EPUB Input: Ignore guide element marking the first spine item as a cover if the spine contains only a single item

This commit is contained in:
Kovid Goyal 2014-04-18 17:21:31 +05:30
parent 2d76655ddc
commit f49cbe2489

View File

@ -105,6 +105,13 @@ class EPUBInput(InputFormatPlugin):
# Remove from spine as covers must be treated
# specially
if not self.for_viewer:
if len(spine) == 1:
log.warn('There is only a single spine item and it is marked as the cover. Removing cover marking.')
for guide_elem in tuple(opf.iterguide()):
if guide_elem.get('type', '').lower() == 'cover':
guide_elem.getparent().remove(guide_elem)
return
else:
spine[0].getparent().remove(spine[0])
removed = guide_cover
else: