diff options
| author | Dalf <alex@al-f.net> | 2020-08-11 15:24:41 +0200 |
|---|---|---|
| committer | Alexandre Flament <alex@al-f.net> | 2020-09-10 10:39:04 +0200 |
| commit | 78df10fb55d9632ccae71d9f3b9260c7614a421c (patch) | |
| tree | 2feb9ca7f261073c32f38b3b76ee170c8584abd6 /searx/templates/simple/404.html | |
| parent | 1022228d950c2a809ed613df1a515d9a6cafda7c (diff) | |
Drop Python 2 (2/n): templates
Diffstat (limited to 'searx/templates/simple/404.html')
| -rw-r--r-- | searx/templates/simple/404.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/simple/404.html b/searx/templates/simple/404.html index 11d604313..1a10514cc 100644 --- a/searx/templates/simple/404.html +++ b/searx/templates/simple/404.html @@ -3,7 +3,7 @@ <div class="center"> <h1>{{ _('Page not found') }}</h1> {% autoescape false %} - <p>{{ _('Go to %(search_page)s.', search_page=unicode('<a href="{}">{}</a>').format(url_for('index'), _('search page'))) }}</p> + <p>{{ _('Go to %(search_page)s.', search_page='<a href="{}">{}</a>'.format(url_for('index'), _('search page'))) }}</p> {% endautoescape %} </div> {% endblock %} |