mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-01 11:16:42 +02:00
koobe plugin: put semicolons beetween authors' names
This commit is contained in:
parent
7bd490bb1c
commit
85a1f8fb43
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ def search(self, query, max_results=10, timeout=60):
|
|||
cover_url = ''.join(data.xpath('.//div[@class="cover"]/a/img/@src'))
|
||||
price = ''.join(data.xpath('.//span[@class="current_price"]/text()'))
|
||||
title = ''.join(data.xpath('.//h2[@class="title"]/a/text()'))
|
||||
author = ''.join(data.xpath('.//h3[@class="book_author"]/a/text()'))
|
||||
author = ', '.join(data.xpath('.//h3[@class="book_author"]/a/text()'))
|
||||
formats = ', '.join(data.xpath('.//div[@class="formats"]/div/div/@title'))
|
||||
|
||||
counter -= 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue