Fix typo causing a harmless error message when downloading covers and only a single cover is found

This commit is contained in:
Kovid Goyal
2019-12-27 14:26:28 +05:30
parent a158386e56
commit 1044fb014c
+1 -1
View File
@@ -932,7 +932,7 @@ class CoversWidget(QWidget): # {{{
txt = _('Could not find any covers for <b>%s</b>')%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 <b>{num}</b> covers for {title}. When the download completes,'