Update the wsgi.py module with the new create_app() function

This commit is contained in:
Alexis Métaireau 2017-07-03 18:25:28 +02:00
parent 62436da755
commit 2911ec7914
2 changed files with 3 additions and 2 deletions

View file

@ -82,7 +82,6 @@ class DefaultConfigurationTestCase(BaseTestCase):
("Budget manager", "budget@notmyidea.org"))
class BudgetTestCase(IhatemoneyTestCase):
def test_notifications(self):

View file

@ -1 +1,3 @@
from run import app as application
from ihatemoney.run import create_app
application = create_app()