From 011403978718034d2817e19ce0b91a20fc766f76 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 6 Apr 2011 22:54:15 -0600 Subject: [PATCH] ... --- src/calibre/gui2/metadata/single_download.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/calibre/gui2/metadata/single_download.py b/src/calibre/gui2/metadata/single_download.py index 426d0b9e78..049ac611c5 100644 --- a/src/calibre/gui2/metadata/single_download.py +++ b/src/calibre/gui2/metadata/single_download.py @@ -116,7 +116,7 @@ class IdentifyWorker(Thread): self.daemon = True self.log, self.abort = log, abort - self.title, self.authors, self.identifiers = (title, authors. + self.title, self.authors, self.identifiers = (title, authors, identifiers) self.results = [] @@ -194,8 +194,8 @@ class IdentifyWidget(QWidget): self.query.setText(_('Query: ')+'; '.join(parts)) self.log(unicode(self.query.text())) - self.worker = IdentifyWorker(self.log, self.abort, self.title, - self.authors, self.identifiers) + self.worker = IdentifyWorker(self.log, self.abort, title, + authors, identifiers) # self.worker.start()