Fix error message when bulk converting and conversion of some books fails

This commit is contained in:
Kovid Goyal 2019-04-12 22:45:52 +05:30
parent a8da128259
commit 623f6623b5
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -122,7 +122,7 @@ def convert_single_ebook(parent, db, book_ids, auto_conversion=False, # {{{
(
_('Could not convert the book because no supported source format was found')
if len(res) == 1 else
_('Could not convert {num} of {tot} books, because no supported source formats were found.'),
_('Could not convert {num} of {tot} books, because no supported source formats were found.')
).format(num=len(res), tot=total),
msg).exec_()