diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-03-04 08:30:08 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-03-04 08:30:08 +0100 |
commit | a6d1c3fd860cff01510cd63264cb672c677a2e69 (patch) | |
tree | 702fb769db8532c64c0a5ac7132105329b053506 /pyaggr3g470r/utils.py | |
parent | The feed abject should be loaded when 'feed_id' is not None. (diff) | |
download | newspipe-a6d1c3fd860cff01510cd63264cb672c677a2e69.tar.gz newspipe-a6d1c3fd860cff01510cd63264cb672c677a2e69.tar.bz2 newspipe-a6d1c3fd860cff01510cd63264cb672c677a2e69.zip |
Test with the old crawler (temporary during the transition).
Diffstat (limited to 'pyaggr3g470r/utils.py')
-rwxr-xr-x | pyaggr3g470r/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/utils.py b/pyaggr3g470r/utils.py index 1fc84ff4..a88c1a98 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+'/fetch.py', str(id), str(feed_id)] + cmd = [conf.PYTHON, conf.basedir+'/manager.py', 'fetch_old', str(id), str(feed_id)] p = subprocess.Popen(cmd, stdout=subprocess.PIPE) def import_opml(email, opml_content): |