From 1044fb014cfbfebdddab7fbc3932b6df5781210d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 27 Dec 2019 14:26:28 +0530 Subject: [PATCH] Fix typo causing a harmless error message when downloading covers and only a single cover is found --- src/calibre/gui2/metadata/single_download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/metadata/single_download.py b/src/calibre/gui2/metadata/single_download.py index 01cd0b3b09..998cd25d31 100644 --- a/src/calibre/gui2/metadata/single_download.py +++ b/src/calibre/gui2/metadata/single_download.py @@ -932,7 +932,7 @@ class CoversWidget(QWidget): # {{{ txt = _('Could not find any covers for %s')%self.book.title else: if num == 2: - txt = _('Found a cover for {title}').format(self.title) + txt = _('Found a cover for {title}').format(title=self.title) else: txt = _( 'Found {num} covers for {title}. When the download completes,'