X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/45ce20d1189ea2042a097bfd9ab7b4b6e96be324..a3be479506edf42dc58feb22b26e4f5da1e49edd:/librarian/epub.py diff --git a/librarian/epub.py b/librarian/epub.py index 8ef436e..1ea2688 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))