From b9609c9b85469e516056b116239a5b73a04ae835 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 2 Jun 2008 07:39:19 -0700 Subject: [PATCH] Fix #743 --- src/calibre/gui2/dialogs/fetch_metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/dialogs/fetch_metadata.py b/src/calibre/gui2/dialogs/fetch_metadata.py index e4b48187ae..0967a91bb8 100644 --- a/src/calibre/gui2/dialogs/fetch_metadata.py +++ b/src/calibre/gui2/dialogs/fetch_metadata.py @@ -39,7 +39,7 @@ class Matches(QAbstractTableModel): elif section == 3: text = _("Publisher") elif section == 4: text = _("ISBN") - return QVariant(self.trUtf8(text)) + return QVariant(text) else: return QVariant(section+1)