aboutsummaryrefslogtreecommitdiff
path: root/newspipe/lib
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-14 19:00:27 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2020-03-14 19:00:27 +0100
commitbadc18b35f2af74a758849de2b04a2ad46b4d397 (patch)
tree498b484628ef906b66c80591f45ad17457bc9572 /newspipe/lib
parentMerge branch 'master' of git.sr.ht:~cedric/newspipe (diff)
downloadnewspipe-badc18b35f2af74a758849de2b04a2ad46b4d397.tar.gz
newspipe-badc18b35f2af74a758849de2b04a2ad46b4d397.tar.bz2
newspipe-badc18b35f2af74a758849de2b04a2ad46b4d397.zip
fixed generated command to fetch newly created feed.
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