1.1 --- a/pymove3d.py Sun Jan 19 10:09:19 2014 +0100
1.2 +++ b/pymove3d.py Sun Jan 19 10:11:38 2014 +0100
1.3 @@ -109,7 +109,9 @@
1.4
1.5 @app.errorhandler(404)
1.6 def page_not_found(e):
1.7 - return render_template(get_locale() + "/404.html")
1.8 + msg = _(u"Url: %(url)s not found" , url=request.url)
1.9 + info = _(u"This information is not available!")
1.10 + return render_template("404.html", msg=msg, info=info)
1.11
1.12 if __name__ == "__main__":
1.13 app.run(host='localhost', port=5014, debug=True)