mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-03 02:23:32 +02:00
Fix #5206 (Series entered during conversion not available in library view)
This commit is contained in:
parent
f28aed0511
commit
294556038b
1 changed files with 3 additions and 2 deletions
|
|
@ -147,8 +147,9 @@ def get_metadata(self):
|
|||
if comments:
|
||||
mi.comments = comments
|
||||
mi.series_index = float(self.series_index.value())
|
||||
if self.series.currentIndex() > -1:
|
||||
mi.series = unicode(self.series.currentText()).strip()
|
||||
series = unicode(self.series.currentText()).strip()
|
||||
if series:
|
||||
mi.series = series
|
||||
tags = [t.strip() for t in unicode(self.tags.text()).strip().split(',')]
|
||||
if tags:
|
||||
mi.tags = tags
|
||||
|
|
|
|||
Loading…
Reference in a new issue