diff options
author | Galen Guyer <galen@galenguyer.com> | 2021-03-01 20:02:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 20:02:34 -0500 |
commit | 8139cc88f9a2ce69909b1c9ed57b70fda15dbbf8 (patch) | |
tree | d61df9691f62952643b5062b32aaac4fdb09df6e /wsgi.py | |
parent | d1bbe068e77e2504d6e300fdf586ddd8afc29a2f (diff) | |
parent | 0d57a01ba2c4da533ad4459fcf5a45b79a17cd53 (diff) |
Merge pull request #1 from galenguyer/v2
v2 - SQLAlchemy
Diffstat (limited to 'wsgi.py')
-rw-r--r-- | wsgi.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,5 +4,5 @@ Primary entry point for the app from poller import APP -if __name__ == "__main__": - APP.run(host=APP.config["IP"], port=int(APP.config["PORT"])) +if __name__ == '__main__': + APP.run(host=APP.config['IP'], port=int(APP.config['PORT'])) |