From d22139cabcd98f7e99dd54c7c555b992a47ad9aa Mon Sep 17 00:00:00 2001 From: John Schember Date: Sun, 27 Feb 2011 16:29:57 -0500 Subject: [PATCH] Fix Feedbooks displaying author --- src/calibre/gui2/store/feedbooks_plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/store/feedbooks_plugin.py b/src/calibre/gui2/store/feedbooks_plugin.py index 9a3fb163df..45d6f87fdc 100644 --- a/src/calibre/gui2/store/feedbooks_plugin.py +++ b/src/calibre/gui2/store/feedbooks_plugin.py @@ -55,8 +55,8 @@ class FeedbooksStore(StorePlugin): if not id: continue - title = ''.join(data.xpath('//h5/a/text()')) - author = ''.join(data.xpath('//h6/a/text()')) + title = ''.join(data.xpath('//h5//a/text()')) + author = ''.join(data.xpath('//h6//a/text()')) price = ''.join(data.xpath('//a[@class="buy"]/text()')) if not price: price = '$0.00'