Use EXTENDED_DEBUG setting for Flask

This commit is contained in:
Dominik V. Salonen 2018-03-20 19:35:20 +01:00
parent 95bb5e18b0
commit 1c80a2bde9
1 changed files with 1 additions and 1 deletions

2
run.py
View File

@ -185,5 +185,5 @@ if __name__ == '__main__':
app.run(
port=config["PORT"],
host=config["HOST"],
debug=config["DEBUG"]
debug=config["EXTENDED_DEBUG"]
)