From 6fba434b43bde2e6e0eb646c920f9d167c54ab2d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 31 Jul 2009 09:29:08 -0600 Subject: [PATCH] Fix #3009 (PRS500 won't connect) --- src/calibre/devices/prs500/driver.py | 1 + src/calibre/web/feeds/recipes/recipe_economist.py | 1 + 2 files changed, 2 insertions(+) diff --git a/src/calibre/devices/prs500/driver.py b/src/calibre/devices/prs500/driver.py index aba8a9d088..5c97144049 100644 --- a/src/calibre/devices/prs500/driver.py +++ b/src/calibre/devices/prs500/driver.py @@ -87,6 +87,7 @@ class PRS500(DeviceConfig, DevicePlugin): description = _('Communicate with the Sony PRS-500 eBook reader.') author = _('Kovid Goyal') supported_platforms = ['windows', 'osx', 'linux'] + log_packets = False VENDOR_ID = 0x054c #: SONY Vendor Id PRODUCT_ID = 0x029b #: Product Id for the PRS-500 diff --git a/src/calibre/web/feeds/recipes/recipe_economist.py b/src/calibre/web/feeds/recipes/recipe_economist.py index 9997c5fce9..c88554ad27 100644 --- a/src/calibre/web/feeds/recipes/recipe_economist.py +++ b/src/calibre/web/feeds/recipes/recipe_economist.py @@ -20,6 +20,7 @@ class Economist(BasicNewsRecipe): oldest_article = 7.0 needs_subscription = False # Strange but true INDEX = 'http://www.economist.com/printedition' + cover_url = 'http://www.economist.com/images/covers/currentcovereu_large.jpg' remove_tags = [dict(name=['script', 'noscript', 'title'])] remove_tags_before = dict(name=lambda tag: tag.name=='title' and tag.parent.name=='body')