Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8d4dd3c5 authored by Adam Tauber's avatar Adam Tauber
Browse files

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

parent ce371f76
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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():