mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 13:22:45 +02:00
merge with John's branch
This commit is contained in:
commit
91e57ed680
2 changed files with 3 additions and 3 deletions
|
|
@ -1269,7 +1269,7 @@ class StoreKoboStore(StoreBase):
|
|||
actual_plugin = 'calibre.gui2.store.kobo_plugin:KoboStore'
|
||||
|
||||
drm_free_only = False
|
||||
headquarters = 'US'
|
||||
headquarters = 'CA'
|
||||
formats = ['EPUB']
|
||||
|
||||
class StoreManyBooksStore(StoreBase):
|
||||
|
|
@ -1367,7 +1367,7 @@ class StoreWizardsTowerBooksStore(StoreBase):
|
|||
class StoreWoblinkStore(StoreBase):
|
||||
name = 'Woblink'
|
||||
author = 'Tomasz Długosz'
|
||||
description = _('Czytanie zdarza się wszędzie!')
|
||||
description = u'Czytanie zdarza się wszędzie!'
|
||||
actual_plugin = 'calibre.gui2.store.woblink_plugin:WoblinkStore'
|
||||
|
||||
drm_free_only = False
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ def open(self, parent=None, detail_item=None, external=False):
|
|||
d.exec_()
|
||||
|
||||
def search(self, query, max_results=10, timeout=60):
|
||||
url = 'http://woblink.com/publication?query' + urllib.quote_plus(query.encode('utf-8'))
|
||||
url = 'http://woblink.com/publication?query=' + urllib.quote_plus(query.encode('utf-8'))
|
||||
|
||||
br = browser()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue