aboutsummaryrefslogtreecommitdiff
path: root/newspipe/bootstrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/bootstrap.py')
-rw-r--r--newspipe/bootstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/bootstrap.py b/newspipe/bootstrap.py
index 1fd1ab04..0d140fae 100644
--- a/newspipe/bootstrap.py
+++ b/newspipe/bootstrap.py
@@ -62,7 +62,7 @@ else:
# application.config["SERVER_NAME"] = domain
# application.config["PREFERRED_URL_SCHEME"] = scheme
-set_logging(application.config['LOG_PATH'])
+set_logging(application.config["LOG_PATH"])
db = SQLAlchemy(application)
bgstack15