mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Merge branch 'master' of https://github.com/davidfor/calibre
This commit is contained in:
commit
bbcfac91f0
@ -78,7 +78,7 @@ class KOBO(USBMS):
|
|||||||
gui_name = 'Kobo Reader'
|
gui_name = 'Kobo Reader'
|
||||||
description = _('Communicate with the Kobo Reader')
|
description = _('Communicate with the Kobo Reader')
|
||||||
author = 'Timothy Legge and David Forrester'
|
author = 'Timothy Legge and David Forrester'
|
||||||
version = (2, 4, 0)
|
version = (2, 5, 0)
|
||||||
|
|
||||||
dbversion = 0
|
dbversion = 0
|
||||||
fwversion = (0,0,0)
|
fwversion = (0,0,0)
|
||||||
@ -1683,7 +1683,8 @@ class KOBOTOUCH(KOBO):
|
|||||||
# print "Normalized FileName: " + path
|
# print "Normalized FileName: " + path
|
||||||
|
|
||||||
# Collect the Kobo metadata
|
# Collect the Kobo metadata
|
||||||
kobo_metadata = Metadata(title, [a.strip() for a in authors.split("&")])
|
authors_list = [a.strip() for a in authors.split("&")] if authors is not None else [_('Unknown')]
|
||||||
|
kobo_metadata = Metadata(title, authors_list)
|
||||||
kobo_metadata.series = series
|
kobo_metadata.series = series
|
||||||
kobo_metadata.series_index = seriesnumber
|
kobo_metadata.series_index = seriesnumber
|
||||||
kobo_metadata.comments = Description
|
kobo_metadata.comments = Description
|
||||||
|
Loading…
x
Reference in New Issue
Block a user