X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/5c55be51e46b296d368b86375f2f4b90ea46c00b..6f81abcc96a810d006b36020395738b260050369:/librarian/mobi.py diff --git a/librarian/mobi.py b/librarian/mobi.py index d98b838..491b5ee 100644 --- a/librarian/mobi.py +++ b/librarian/mobi.py @@ -31,11 +31,11 @@ def transform(wldoc, verbose=False, if not cover: cover = WLCover cover_file = NamedTemporaryFile(suffix='.png', delete=False) - bound_cover = cover(book_info) - bound_cover.save(cover_file) + c = cover(book_info) + c.save(cover_file) - if bound_cover.uses_dc_cover: - if document.book_info.cover_by: + if c.uses_dc_cover: + if document.remobook_info.cover_by: document.edoc.getroot().set('data-cover-by', document.book_info.cover_by) if document.book_info.cover_source: document.edoc.getroot().set('data-cover-source', document.book_info.cover_source) @@ -57,4 +57,4 @@ def transform(wldoc, verbose=False, subprocess.check_call(['ebook-convert', epub.get_filename(), output_file.name, '--no-inline-toc', '--cover=%s' % cover_file.name], **kwargs) os.unlink(cover_file.name) - return OutputFile.from_filename(output_file.name) \ No newline at end of file + return OutputFile.from_filename(output_file.name)