aboutsummaryrefslogtreecommitdiff
path: root/newspipe
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe')
-rwxr-xr-xnewspipe/lib/misc_utils.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/newspipe/lib/misc_utils.py b/newspipe/lib/misc_utils.py
index 8eb03816..3bd9c6a5 100755
--- a/newspipe/lib/misc_utils.py
+++ b/newspipe/lib/misc_utils.py
@@ -101,8 +101,7 @@ def fetch(id, feed_id=None):
The default crawler ("asyncio") is launched with the manager.
"""
cmd = [
- "poetry", "run",
- "flask",
+ sys.exec_prefix + "/bin/flask",
"fetch_asyncio",
"--user-id", str(id),
]
bgstack15