remove language from array metadata
This commit is contained in:
parent
fbb7663a2f
commit
c7d7a7597c
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue
Block a user