X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/ad7b5c75f9161ac14f1f26032f4b4d54077b65a4..14fbd48817ba27853a45164908d10ed679acac6e:/librarian/pdf.py diff --git a/librarian/pdf.py b/librarian/pdf.py index 7aaff10..12c07ea 100644 --- a/librarian/pdf.py +++ b/librarian/pdf.py @@ -230,8 +230,10 @@ def transform(wldoc, verbose=False, save_tex=None, morefloats=None, root.set('customizations', u','.join(customizations)) # add editors info - root.set('editors', u', '.join(sorted( - editor.readable() for editor in document.editors()))) + editors = document.editors() + if editors: + root.set('editors', u', '.join(sorted( + editor.readable() for editor in editors))) if document.book_info.funders: root.set('funders', u', '.join(document.book_info.funders)) if document.book_info.thanks: