X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/26fba30d99a051b3779a36f332993795d7f1c376..ff2a09e9ecd8e9bede2d3572942bcd32f66f6198:/librarian/epub.py diff --git a/librarian/epub.py b/librarian/epub.py index 8ef436e..bf58a9f 100644 --- a/librarian/epub.py +++ b/librarian/epub.py @@ -502,8 +502,10 @@ def transform(wldoc, verbose=False, document.edoc.getroot().set(flag, 'yes') # add editors info - document.edoc.getroot().set('editors', u', '.join(sorted( - editor.readable() for editor in document.editors()))) + editors = document.editors() + if editors: + document.edoc.getroot().set('editors', u', '.join(sorted( + editor.readable() for editor in editors))) if document.book_info.funders: document.edoc.getroot().set('funders', u', '.join( document.book_info.funders)) @@ -518,6 +520,8 @@ def transform(wldoc, verbose=False, output_file = NamedTemporaryFile(prefix='librarian', suffix='.epub', delete=False) zip = zipfile.ZipFile(output_file, 'w', zipfile.ZIP_DEFLATED) + functions.reg_mathml_epub(zip) + # write static elements mime = zipfile.ZipInfo() mime.filename = 'mimetype'