Browse Source

[fix] unicode url fix

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

+ 2 - 1
searx/webapp.py

@@ -140,7 +140,8 @@ def index():
                                        .strip().split())
                                        .strip().split())
         if len(result['url']) > 74:
         if len(result['url']) > 74:
             url_parts = result['url'][:35], result['url'][-35:]
             url_parts = result['url'][:35], result['url'][-35:]
-            result['pretty_url'] = '{0}[...]{1}'.format(*url_parts)
+            print url_parts
+            result['pretty_url'] = u'{0}[...]{1}'.format(*url_parts)
         else:
         else:
             result['pretty_url'] = result['url']
             result['pretty_url'] = result['url']