From ddfaaf080c63cc16f5569923a81e8027aa2fda59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20D=C5=82ugosz?= Date: Mon, 11 Feb 2013 22:07:22 +0100 Subject: [PATCH] improve authors field in legimi --- src/calibre/gui2/store/stores/legimi_plugin.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/calibre/gui2/store/stores/legimi_plugin.py b/src/calibre/gui2/store/stores/legimi_plugin.py index 85561c63f3..8810f551db 100644 --- a/src/calibre/gui2/store/stores/legimi_plugin.py +++ b/src/calibre/gui2/store/stores/legimi_plugin.py @@ -61,8 +61,6 @@ class LegimiStore(BasicStoreConfig, StorePlugin): cover_url = ''.join(data.xpath('.//img[1]/@src')) title = ''.join(data.xpath('.//span[@class="bookListTitle ellipsis"]/text()')) author = ''.join(data.xpath('.//span[@class="bookListAuthor ellipsis"]/text()')) - author = re.sub(',','',author) - author = re.sub(';',',',author) price = ''.join(data.xpath('.//div[@class="bookListPrice"]/span/text()')) formats = [] with closing(br.open(id.strip(), timeout=timeout/4)) as nf: