From bcc406ee05f3791b773917d15b6b82b3ed32f4ea Mon Sep 17 00:00:00 2001 From: John Schember Date: Fri, 25 Feb 2011 08:48:17 -0500 Subject: [PATCH] ... --- src/calibre/gui2/store/gutenberg_plugin.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/calibre/gui2/store/gutenberg_plugin.py b/src/calibre/gui2/store/gutenberg_plugin.py index c97e2c9ce3..6904e27bcd 100644 --- a/src/calibre/gui2/store/gutenberg_plugin.py +++ b/src/calibre/gui2/store/gutenberg_plugin.py @@ -25,6 +25,8 @@ class GutenbergStore(StorePlugin): d = d.exec_() def search(self, query, max_results=10, timeout=60): + # Gutenberg's website does not allow searching both author and title. + # Using a google search so we can search on both fields at once. url = 'http://www.google.com/xhtml?q=site:gutenberg.org+' + urllib2.quote(query) br = browser()