remove language from array metadata

This commit is contained in:
Jan Guzej 2019-10-19 21:49:18 +02:00
parent fbb7663a2f
commit c7d7a7597c
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ def get_epub_info(tmp_file_path, original_file_name, original_file_extension):
if len(tmp) > 0:
if s == 'creator':
epub_metadata[s] = ' & '.join(p.xpath('dc:%s/text()' % s, namespaces=ns))
elif s == 'language' or s == 'subject':
elif s == 'subject':
epub_metadata[s] = ', '.join(p.xpath('dc:%s/text()' % s, namespaces=ns))
else:
epub_metadata[s] = p.xpath('dc:%s/text()' % s, namespaces=ns)[0]