瀏覽代碼

[fix] use proper encoding with both py2/3 - closes #1094

Adam Tauber 7 年之前
父節點
當前提交
7061eb91af
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      searx/templates/simple/404.html

+ 1
- 1
searx/templates/simple/404.html 查看文件

@@ -3,7 +3,7 @@
3 3
 <div class="center">
4 4
     <h1>{{ _('Page not found') }}</h1>
5 5
     {% autoescape false %}
6
-    <p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.decode('utf-8').format(url_for('index'), _('search page'))) }}</p>
6
+    <p>{{ _('Go to %(search_page)s.', search_page=unicode('<a href="{}">{}</a>').format(url_for('index'), _('search page'))) }}</p>
7 7
     {% endautoescape %}
8 8
 </div>
9 9
 {% endblock %}