From 623f6623b55f16441a0b7b9d7ec4313818341b59 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 12 Apr 2019 22:45:52 +0530 Subject: [PATCH] Fix error message when bulk converting and conversion of some books fails --- src/calibre/gui2/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/tools.py b/src/calibre/gui2/tools.py index 14d94afa89..e2136cf0ed 100644 --- a/src/calibre/gui2/tools.py +++ b/src/calibre/gui2/tools.py @@ -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_()