Ensure author returned by fb2 metadata plugin is unicode

This commit is contained in:
Kovid Goyal 2022-05-21 06:06:28 +05:30
parent 8fb8717af8
commit 1f7a80cdd3
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -199,7 +199,7 @@ def _parse_author(elm_author, ctx):
if nname: if nname:
author = nname author = nname
return author return str(author)
def _parse_book_title(root, ctx): def _parse_book_title(root, ctx):