aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-04 11:41:43 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-04 11:41:43 +0100
commitc0b618b7ca251cdd775092c6a6c1ac8d1ae9671d (patch)
tree9e317024759543b7b5c804aa47d43ae10e8a3d01 /pyaggr3g470r
parentTest with the old crawler (temporary during the transition). (diff)
downloadnewspipe-c0b618b7ca251cdd775092c6a6c1ac8d1ae9671d.tar.gz
newspipe-c0b618b7ca251cdd775092c6a6c1ac8d1ae9671d.tar.bz2
newspipe-c0b618b7ca251cdd775092c6a6c1ac8d1ae9671d.zip
Updated the name of the command to invoke the crawler based on asyncio. Updated the documentation consequently.
Diffstat (limited to 'pyaggr3g470r')
-rwxr-xr-xpyaggr3g470r/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/utils.py b/pyaggr3g470r/utils.py
index a88c1a98..3ed89f55 100755
--- a/pyaggr3g470r/utils.py
+++ b/pyaggr3g470r/utils.py
@@ -79,7 +79,7 @@ def opened_w_error(filename, mode="r"):
f.close()
def fetch(id, feed_id=None):
- cmd = [conf.PYTHON, conf.basedir+'/manager.py', 'fetch_old', str(id), str(feed_id)]
+ cmd = [conf.PYTHON, conf.basedir+'/manager.py', 'fetch_asyncio', str(id), str(feed_id)]
p = subprocess.Popen(cmd, stdout=subprocess.PIPE)
def import_opml(email, opml_content):
bgstack15