From 2911ec791437244962131c8b334def2f3d8d6c38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 3 Jul 2017 18:25:28 +0200 Subject: [PATCH] Update the wsgi.py module with the new create_app() function --- ihatemoney/tests/tests.py | 1 - ihatemoney/wsgi.py | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ihatemoney/tests/tests.py b/ihatemoney/tests/tests.py index 331a411d..d788887b 100644 --- a/ihatemoney/tests/tests.py +++ b/ihatemoney/tests/tests.py @@ -82,7 +82,6 @@ class DefaultConfigurationTestCase(BaseTestCase): ("Budget manager", "budget@notmyidea.org")) - class BudgetTestCase(IhatemoneyTestCase): def test_notifications(self): diff --git a/ihatemoney/wsgi.py b/ihatemoney/wsgi.py index 66f7a732..d5375689 100644 --- a/ihatemoney/wsgi.py +++ b/ihatemoney/wsgi.py @@ -1 +1,3 @@ -from run import app as application +from ihatemoney.run import create_app + +application = create_app()