mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 15:13:41 +02:00
Fix handling of non-ASCII chars when redering series in default EPUB cover
This commit is contained in:
parent
ac406ab5cf
commit
47141e527e
1 changed files with 2 additions and 1 deletions
|
|
@ -99,7 +99,8 @@ def default_cover(self):
|
|||
series_string = None
|
||||
if m.series and m.series_index:
|
||||
series_string = _('Book %s of %s')%(
|
||||
fmt_sidx(m.series_index[0], use_roman=True), m.series[0])
|
||||
fmt_sidx(m.series_index[0], use_roman=True),
|
||||
unicode(m.series[0]))
|
||||
|
||||
try:
|
||||
from calibre.ebooks import calibre_cover
|
||||
|
|
|
|||
Loading…
Reference in a new issue