From fc80d9e661faa1c2a4dbf00a7b0624df8f290d37 Mon Sep 17 00:00:00 2001 From: gd Date: Wed, 5 Jan 2022 09:31:27 +0300 Subject: [PATCH] fix: Fixed WSGI app startup --- imgs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/imgs.py b/imgs.py index 8665ecb..7410260 100644 --- a/imgs.py +++ b/imgs.py @@ -91,5 +91,7 @@ def send_image(image_name): def send_style(): return static_file('style.css', root = './') +app = app() # Create WSGI application + if __name__ == '__main__': run()