diff options
| -rw-r--r-- | searx/webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index f76281a5d..262bf9bdf 100644 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -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(): |