From c17a7813fb8ad99ae2422c17a456280a0c6d9590 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Apr 16 2018 15:05:01 +0000 Subject: Adjust the wsgi file for the new arch Signed-off-by: Pierre-Yves Chibon --- diff --git a/files/pagure.wsgi b/files/pagure.wsgi index 6bcc1ff..b34196e 100644 --- a/files/pagure.wsgi +++ b/files/pagure.wsgi @@ -24,5 +24,7 @@ os.environ['TEMP'] = '/var/tmp/' # The most important line to make the wsgi working -from pagure import APP as application +from pagure.flask_app import create_app + +application = create_app() #application.debug = True