From f9a931dbfb47d6c49826c7b4244688f97a5e4d99 Mon Sep 17 00:00:00 2001 From: John Schember Date: Tue, 19 Apr 2011 21:39:50 -0400 Subject: [PATCH] Store: mobileread report DRM status. --- src/calibre/gui2/store/mobileread_plugin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calibre/gui2/store/mobileread_plugin.py b/src/calibre/gui2/store/mobileread_plugin.py index d520b42fae..54f19cf814 100644 --- a/src/calibre/gui2/store/mobileread_plugin.py +++ b/src/calibre/gui2/store/mobileread_plugin.py @@ -76,6 +76,7 @@ class MobileReadStore(BasicStoreConfig, StorePlugin): matches = heapq.nlargest(max_results, matches) for score, book in matches: book.price = '$0.00' + book.drm = False yield book def update_book_list(self, timeout=10):