aboutsummaryrefslogtreecommitdiff
path: root/newspipe/bootstrap.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/bootstrap.py')
-rw-r--r--newspipe/bootstrap.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/newspipe/bootstrap.py b/newspipe/bootstrap.py
index aa80173b..320fa261 100644
--- a/newspipe/bootstrap.py
+++ b/newspipe/bootstrap.py
@@ -23,8 +23,8 @@ def set_logging(
"root",
"bootstrap",
"runserver",
- "web",
- "crawler.default_crawler",
+ "newspipe",
+ "newspipe.crawler.default_crawler",
"manager",
"plugins",
)
@@ -59,7 +59,7 @@ else:
try:
application.config.from_pyfile("development.py", silent=False)
except Exception:
- application.config.from_pyfile("production.py", silent=False)
+ application.config.from_pyfile("sqlite.py", silent=False)
set_logging(application.config["LOG_PATH"])
bgstack15