mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
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:
parent
34263c3ac0
commit
2b3bf30dc9
@ -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':
|
||||
|
Loading…
x
Reference in New Issue
Block a user