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'