Parcourir la source

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

Adam Tauber il y a 7 ans
Parent
révision
7061eb91af
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      searx/templates/simple/404.html

+ 1
- 1
searx/templates/simple/404.html Voir le fichier

3
 <div class="center">
3
 <div class="center">
4
     <h1>{{ _('Page not found') }}</h1>
4
     <h1>{{ _('Page not found') }}</h1>
5
     {% autoescape false %}
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
     {% endautoescape %}
7
     {% endautoescape %}
8
 </div>
8
 </div>
9
 {% endblock %}
9
 {% endblock %}