mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 11:04:26 +02:00
Fix #5855 (Import of ePub book with multiple entries on a single Subject Meta line needs cleanup)
This commit is contained in:
parent
534847a80a
commit
f712c3cc3b
1 changed files with 3 additions and 1 deletions
|
|
@ -736,7 +736,9 @@ def tags(self):
|
|||
def fget(self):
|
||||
ans = []
|
||||
for tag in self.tags_path(self.metadata):
|
||||
ans.append(self.get_text(tag))
|
||||
text = self.get_text(tag)
|
||||
if text and text.strip():
|
||||
ans.extend([x.strip() for x in text.split(',')])
|
||||
return ans
|
||||
|
||||
def fset(self, val):
|
||||
|
|
|
|||
Loading…
Reference in a new issue