From 007a542fd188bc9c6f8afe12452b9d62a5e798f3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Herv=C3=A9=20M=C3=A9nager?= <herve.menager@gmail.com>
Date: Wed, 28 Jul 2021 11:22:28 +0200
Subject: [PATCH] correct wsgi app module wrt new flask-smorest architecture

---
 jass/wsgi.py | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/jass/wsgi.py b/jass/wsgi.py
index efee183b..f265a893 100644
--- a/jass/wsgi.py
+++ b/jass/wsgi.py
@@ -1,4 +1,3 @@
-from .server import get_jass_app
+from .server import jass_app
 
-app = get_jass_app()
-application = app.app
+application = jass_app.create_app()
-- 
GitLab