mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix typo causing a harmless error message when downloading covers and only a single cover is found
This commit is contained in:
parent
a158386e56
commit
1044fb014c
@ -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,'
|
||||
|
Loading…
x
Reference in New Issue
Block a user