aboutsummaryrefslogtreecommitdiff
path: root/newspipe/lib
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/lib')
-rwxr-xr-xnewspipe/lib/misc_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/lib/misc_utils.py b/newspipe/lib/misc_utils.py
index 1e246757..bde65fd5 100755
--- a/newspipe/lib/misc_utils.py
+++ b/newspipe/lib/misc_utils.py
@@ -102,7 +102,7 @@ def fetch(id, feed_id=None):
"""
cmd = [
sys.executable,
- application.config["BASE_DIR"] + "/manager.py",
+ "manager.py",
"fetch_asyncio",
"--user_id=" + str(id),
]
bgstack15