Disable debug mode

This commit is contained in:
sqozz 2018-04-01 01:36:11 +02:00
parent befc9db877
commit 6c66eeb86c
1 changed files with 1 additions and 1 deletions

View File

@ -285,6 +285,6 @@ if __name__ == "__main__":
init()
app.jinja_env.globals.update(json=json)
app.jinja_env.globals.update(sorted=sorted)
app.run(debug=True, host="127.0.0.1")
app.run(debug=False, host="127.0.0.1")
# vim: set ts=2 sts=2 sw=2 noexpandtab: