about summary refs log tree commit diff
path: root/uploader
diff options
context:
space:
mode:
Diffstat (limited to 'uploader')
-rw-r--r--uploader/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/uploader/__init__.py b/uploader/__init__.py
index 00ed7e7..feffcae 100644
--- a/uploader/__init__.py
+++ b/uploader/__init__.py
@@ -25,8 +25,8 @@ def create_app():
     app = Flask(__name__)
     app.config.from_pyfile(
         Path(__file__).parent.joinpath("default_settings.py"))
-    if "QCAPP_CONF" in os.environ:
-        app.config.from_envvar("QCAPP_CONF") # Override defaults with instance path
+    if "UPLOADER_CONF" in os.environ:
+        app.config.from_envvar("UPLOADER_CONF") # Override defaults with instance path
 
     override_settings_with_envvars(app, ignore=tuple())