MOBI output: Write multiple authors into individual records in the EXTH header instead of combining them with a ;, to mimic recent kindlegen behavior

This commit is contained in:
Kovid Goyal 2012-05-17 12:05:25 +05:30
parent 34263c3ac0
commit 2b3bf30dc9

View File

@ -56,7 +56,7 @@ def build_exth(metadata, prefer_author_sort=False, is_periodical=False,
items][:1]
else:
creators = [unicode(c) for c in items]
items = ['; '.join(creators)]
items = creators
for item in items:
data = unicode(item)
if term != 'description':