Browse Source

[fix] pep8

asciimoo 11 years ago
parent
commit
b22dd51bd7
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      searx/webapp.py

+ 1
- 1
searx/webapp.py View File

@@ -191,7 +191,7 @@ def index():
191 191
             if 'content' in result:
192 192
                 result['content'] = html_to_text(result['content']).strip()
193 193
             # removing html content and whitespace duplications
194
-            result['title'] = ' '.join(html_to_text(result['title'])\
194
+            result['title'] = ' '.join(html_to_text(result['title'])
195 195
                                        .strip().split())
196 196
         if len(result['url']) > 74:
197 197
             url_parts = result['url'][:35], result['url'][-35:]