diff options
| author | asciimoo <asciimoo@gmail.com> | 2014-02-05 08:20:24 +0100 |
|---|---|---|
| committer | asciimoo <asciimoo@gmail.com> | 2014-02-05 08:20:24 +0100 |
| commit | b22dd51bd7fc7234a40b664964a6210cbe7bf455 (patch) | |
| tree | f2703494c16b314d59b83239824d7c1cf77f3b68 | |
| parent | 5695ec58df14615e154072e97afc4bd6ed505812 (diff) | |
[fix] pep8
| -rw-r--r-- | searx/webapp.py | 2 |
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:] |