aboutsummaryrefslogtreecommitdiff
path: root/wsgi.py
diff options
context:
space:
mode:
authorJoel Eager <jee7291@rit.edu>2018-07-24 23:07:28 -0400
committerJoel Eager <jee7291@rit.edu>2018-07-24 23:07:28 -0400
commitb0fba1502d99aa4e81b9cf5ccdbdc870c733dc7d (patch)
treeb96b5db4b5d729ad6a9bf66e2a118816d1e378f5 /wsgi.py
parentb7cdb78028c608e57e79f807c95cb3e0267c4370 (diff)
Cleaned up repo and added a test endpoint
Diffstat (limited to 'wsgi.py')
-rw-r--r--wsgi.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wsgi.py b/wsgi.py
index 4bda50f..d0499c2 100644
--- a/wsgi.py
+++ b/wsgi.py
@@ -1,6 +1,6 @@
from packet import app
if __name__ == "__main__":
- app.run(host=app.config['IP'], port=app.config['PORT'])
+ app.run(host=app.config["IP"], port=int(app.config["PORT"]))
-application = app
+application = app \ No newline at end of file