aboutsummaryrefslogtreecommitdiff
path: root/wsgi.py
diff options
context:
space:
mode:
Diffstat (limited to 'wsgi.py')
-rw-r--r--wsgi.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wsgi.py b/wsgi.py
index 0f246aa..ff24d78 100644
--- a/wsgi.py
+++ b/wsgi.py
@@ -1,12 +1,12 @@
"""Run the application"""
-from qc_app import create_app, instance_path
+from qc_app import create_app
from qc_app.check_connections import check_db, check_redis
def check_and_build_app():
"""Setup the application for running."""
# Setup the app
- appl = create_app(instance_path())
+ appl = create_app()
# Check connections
check_db(appl.config["SQL_URI"])