From 564a01e81a1d5e96912606f14621547c6d625a32 Mon Sep 17 00:00:00 2001 From: John Schember Date: Sat, 26 Feb 2011 11:52:34 -0500 Subject: [PATCH] ... --- src/calibre/gui2/store/gutenberg_plugin.py | 2 -- src/calibre/gui2/store/manybooks_plugin.py | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/calibre/gui2/store/gutenberg_plugin.py b/src/calibre/gui2/store/gutenberg_plugin.py index e31fc1149d..56edb4588e 100644 --- a/src/calibre/gui2/store/gutenberg_plugin.py +++ b/src/calibre/gui2/store/gutenberg_plugin.py @@ -56,5 +56,3 @@ class GutenbergStore(StorePlugin): counter -= 1 yield ('', title.strip(), author.strip(), price.strip(), '/ebooks/' + id.strip()) - - diff --git a/src/calibre/gui2/store/manybooks_plugin.py b/src/calibre/gui2/store/manybooks_plugin.py index 79818b9123..4afceeeb63 100644 --- a/src/calibre/gui2/store/manybooks_plugin.py +++ b/src/calibre/gui2/store/manybooks_plugin.py @@ -26,6 +26,8 @@ class ManyBooksStore(StorePlugin): def search(self, query, max_results=10, timeout=60): # ManyBooks website separates results for title and author. + # It also doesn't do a clear job of references authors and + # secondary titles. Google is also faster. # Using a google search so we can search on both fields at once. url = 'http://www.google.com/xhtml?q=site:manybooks.net+' + urllib2.quote(query) @@ -56,5 +58,3 @@ class ManyBooksStore(StorePlugin): counter -= 1 yield ('', title.strip(), author.strip(), price.strip(), '/titles/' + id.strip()) - -