diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-14 19:00:27 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-03-14 19:00:27 +0100 |
commit | badc18b35f2af74a758849de2b04a2ad46b4d397 (patch) | |
tree | 498b484628ef906b66c80591f45ad17457bc9572 | |
parent | Merge branch 'master' of git.sr.ht:~cedric/newspipe (diff) | |
download | newspipe-badc18b35f2af74a758849de2b04a2ad46b4d397.tar.gz newspipe-badc18b35f2af74a758849de2b04a2ad46b4d397.tar.bz2 newspipe-badc18b35f2af74a758849de2b04a2ad46b4d397.zip |
fixed generated command to fetch newly created feed.
-rwxr-xr-x | newspipe/lib/misc_utils.py | 2 |
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), ] |