1
0
Fork 1
mirror of https://github.com/searxng/searxng synced 2024-01-01 19:24:07 +01:00

[fix] 404 HTTP status on not found pages - closes

This commit is contained in:
Adam Tauber 2016-09-07 08:32:01 +02:00
parent ce371f766a
commit 8d4dd3c515

View file

@ -721,7 +721,7 @@ def config():
@app.errorhandler(404)
def page_not_found(e):
return render('404.html')
return render('404.html'), 404
def run():