equal
deleted
inserted
replaced
51 return render_template(_("en/privacy.html"), act="privacy") |
51 return render_template(_("en/privacy.html"), act="privacy") |
52 |
52 |
53 |
53 |
54 @app.errorhandler(404) |
54 @app.errorhandler(404) |
55 def page_not_found(e): |
55 def page_not_found(e): |
56 return render_template("404.html"), 404 |
56 return render_template(_("en/404.html")), 404 |
57 |
57 |
58 if __name__ == "__main__": |
58 if __name__ == "__main__": |
59 app.run(host='localhost', port=5014, debug=True) |
59 app.run(host='localhost', port=5014, debug=True) |
60 |
60 |
61 |
61 |