From 58652ae068c87a60f699d6ff754dcdf1192bf05a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 2 Dec 2016 08:37:50 +0530 Subject: [PATCH] ... --- src/calibre/gui2/metadata/single_download.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/metadata/single_download.py b/src/calibre/gui2/metadata/single_download.py index 334d2bf676..bc4669db10 100644 --- a/src/calibre/gui2/metadata/single_download.py +++ b/src/calibre/gui2/metadata/single_download.py @@ -183,7 +183,7 @@ class ResultsModel(QAbstractTableModel): # {{{ return book elif role == Qt.ToolTipRole and col == 3: return ( - _('The has cover indication is not fully\n' + _('The "has cover" indication is not fully\n' 'reliable. Sometimes results marked as not\n' 'having a cover will find a cover in the download\n' 'cover stage, and vice versa.')) @@ -1194,9 +1194,9 @@ class CoverFetch(QDialog): # {{{ # }}} + if __name__ == '__main__': DEBUG_DIALOG = True app = QApplication([]) d = FullFetch() d.start(title='great gatsby', authors=['fitzgerald']) -