From 85de20cd3bcad116a598c818756ed298950f5781 Mon Sep 17 00:00:00 2001 From: Arvind Balijepalli Date: Wed, 14 Apr 2021 19:50:12 -0400 Subject: [PATCH] Bug fixes --- mosaicweb/run.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mosaicweb/run.py b/mosaicweb/run.py index 204e6237..66fc6be4 100644 --- a/mosaicweb/run.py +++ b/mosaicweb/run.py @@ -5,7 +5,9 @@ import mosaic -if not sys.platform.startswith('win'): +if sys.platform.startswith('win'): + from mosaicweb import app +else: import gunicorn.app.base class mosaicApplication(gunicorn.app.base.BaseApplication):