mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-27 21:43:17 +02:00
Fix #5092 (Errors in Catalog list)
This commit is contained in:
parent
81056a21cb
commit
6085c0886d
1 changed files with 1 additions and 1 deletions
|
|
@ -102,7 +102,7 @@ def run(self, path_to_output, opts, db, notification=DummyReporter()):
|
|||
if field == 'formats':
|
||||
fmt_list = []
|
||||
for format in item:
|
||||
fmt_list.append(format.partition('.')[2])
|
||||
fmt_list.append(format.rpartition('.')[2].lower())
|
||||
item = ', '.join(fmt_list)
|
||||
elif field in ['authors','tags']:
|
||||
item = ', '.join(item)
|
||||
|
|
|
|||
Loading…
Reference in a new issue