From 197b99c1e8e1de235cefea08e44f9bba9cd75a20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20D=C5=82ugosz?= Date: Wed, 21 Sep 2011 21:10:24 +0200 Subject: [PATCH] update Woblink store --- src/calibre/gui2/store/stores/woblink_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/store/stores/woblink_plugin.py b/src/calibre/gui2/store/stores/woblink_plugin.py index 9f2e29e825..fe1cb4db69 100644 --- a/src/calibre/gui2/store/stores/woblink_plugin.py +++ b/src/calibre/gui2/store/stores/woblink_plugin.py @@ -56,7 +56,7 @@ class WoblinkStore(BasicStoreConfig, StorePlugin): continue cover_url = ''.join(data.xpath('.//td[@class="w10 va-t"]/a[1]/img/@src')) - title = ''.join(data.xpath('.//h3[@class="title"]/a[1]/text()')) + title = ''.join(data.xpath('.//h2[@class="title"]/a[1]/text()')) author = ', '.join(data.xpath('.//p[@class="author"]/a/text()')) price = ''.join(data.xpath('.//div[@class="prices"]/p[1]/span/text()')) price = re.sub('PLN', ' zł', price)