diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-03-21 22:03:37 +0000 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-03-21 22:03:37 +0000 |
commit | 0385590922286093c6c77ca10364b59ef06a240e (patch) | |
tree | 9b3d8c4c386b47fa93688490ccce814cacc34a28 /rundebug.py | |
parent | 9ddc29e41f18b892b5b21babbfc0539431cd4768 (diff) | |
download | cheatdb-0385590922286093c6c77ca10364b59ef06a240e.tar.xz |
Use consistent quotes
Diffstat (limited to 'rundebug.py')
-rw-r--r-- | rundebug.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rundebug.py b/rundebug.py index e4592d2..292c33f 100644 --- a/rundebug.py +++ b/rundebug.py @@ -1,3 +1,3 @@ from app import app -app.run(host='0.0.0.0', port=5000, debug=True) +app.run(host="127.0.0.1", port=5000, debug=True) |