Let web server not run on debug mode.

This commit is contained in:
Yujian Zhu 2018-12-01 17:09:38 +08:00 committed by GitHub
parent 198a601eed
commit b113dcc181
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -732,4 +732,4 @@ if __name__ == '__main__':
elif opt in ("-p", "--port"):
webport = int(arg)
app.run(host = webip, port = webport, debug = True, threaded=True)
app.run(host = webip, port = webport, threaded=True)