浏览代码

[fix] unicode url fix

asciimoo 11 年前
父节点
当前提交
5f8ae9b965
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      searx/webapp.py

+ 2
- 1
searx/webapp.py 查看文件

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