summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2014-02-05 08:20:24 +0100
committerasciimoo <asciimoo@gmail.com>2014-02-05 08:20:24 +0100
commitb22dd51bd7fc7234a40b664964a6210cbe7bf455 (patch)
treef2703494c16b314d59b83239824d7c1cf77f3b68 /searx
parent5695ec58df14615e154072e97afc4bd6ed505812 (diff)
downloadsearxng-b22dd51bd7fc7234a40b664964a6210cbe7bf455.tar.gz
searxng-b22dd51bd7fc7234a40b664964a6210cbe7bf455.zip
[fix] pep8
Diffstat (limited to 'searx')
-rw-r--r--searx/webapp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py
index c52fae9d9..75c8abc8c 100644
--- a/searx/webapp.py
+++ b/searx/webapp.py
@@ -191,7 +191,7 @@ def index():
if 'content' in result:
result['content'] = html_to_text(result['content']).strip()
# removing html content and whitespace duplications
- result['title'] = ' '.join(html_to_text(result['title'])\
+ result['title'] = ' '.join(html_to_text(result['title'])
.strip().split())
if len(result['url']) > 74:
url_parts = result['url'][:35], result['url'][-35:]