aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilo Casagrande <milo.casagrande@linaro.org>2014-10-30 14:26:48 +0100
committerMilo Casagrande <milo.casagrande@linaro.org>2014-10-30 14:26:48 +0100
commit20b679be795da1936b5fa71b910928fdc2b31c34 (patch)
treedfbc210606613c711c91b8db6bbe9254c38380f3
parentad4f5649e20eaf523b7f05d6088e3eca2ea1c33c (diff)
app: Fix missing argument at startup.
Change-Id: Ied413dfde2b8a9871131b6c24aab95feb7816ce8
-rw-r--r--app/dashboard/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/dashboard/__init__.py b/app/dashboard/__init__.py
index 8562390..3c1ab5f 100644
--- a/app/dashboard/__init__.py
+++ b/app/dashboard/__init__.py
@@ -76,7 +76,7 @@ app.root_path = os.path.abspath(os.path.dirname(__file__))
app.config.from_object('dashboard.default_settings')
if os.path.isfile(DEFAULT_CONFIG_FILE):
- app.config.from_pyfile()
+ app.config.from_pyfile(DEFAULT_CONFIG_FILE)
if os.environ.get(APP_ENVVAR):
app.config.from_envvar(APP_ENVVAR)