From 80b0f18b088e815e17b3af1e7414e7cac82410a2 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 30 Oct 2016 20:36:51 +0530 Subject: [PATCH] pep8 --- src/calibre/gui2/store/stores/ebookpoint_plugin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/gui2/store/stores/ebookpoint_plugin.py b/src/calibre/gui2/store/stores/ebookpoint_plugin.py index 5e68d74922..f186d07535 100644 --- a/src/calibre/gui2/store/stores/ebookpoint_plugin.py +++ b/src/calibre/gui2/store/stores/ebookpoint_plugin.py @@ -46,7 +46,8 @@ class EbookpointStore(BasicStoreConfig, StorePlugin): d.exec_() def search(self, query, max_results=25, timeout=60): - url = 'http://ebookpoint.pl/search?qa=&szukaj=' + urllib.quote_plus(query.decode('utf-8').encode('iso-8859-2')) + '&serwisyall=0&wprzyg=0&wsprzed=1&wyczerp=0&formaty=em-p' + url = 'http://ebookpoint.pl/search?qa=&szukaj=' + urllib.quote_plus( + query.decode('utf-8').encode('iso-8859-2')) + '&serwisyall=0&wprzyg=0&wsprzed=1&wyczerp=0&formaty=em-p' br = browser()