From 69a2658300349e1104d4ea3a7f1c62a87a65620b Mon Sep 17 00:00:00 2001 From: Benjamyn Love Date: Mon, 12 Oct 2020 21:30:17 +1100 Subject: [PATCH] removed debugs --- app/app.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/app.py b/app/app.py index 79afbe3..58017ef 100644 --- a/app/app.py +++ b/app/app.py @@ -21,7 +21,6 @@ else: domain = config['VARS']['domain'] secret = config['VARS']['secret'] -print(domain, secret) # Functions @@ -83,5 +82,5 @@ def page_not_found(error): return "File not found", 404 -# if __name__ == '__main__': -# app.run(host='0.0.0.0') +if __name__ == '__main__': + app.run(host='0.0.0.0')