Merge pull request #360 from FirmlyReality/master

Let web server not run on debug mode.
This commit is contained in:
Yujian Zhu 2018-12-01 17:10:01 +08:00 committed by GitHub
commit 481318e0b1
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)