From 2ea470dfc61e054f477d08698b00f0a911b68cd5 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Sun, 9 Nov 2014 08:37:53 +0100 Subject: More robust fetch.py script. --- pyaggr3g470r/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pyaggr3g470r/utils.py') diff --git a/pyaggr3g470r/utils.py b/pyaggr3g470r/utils.py index d0419362..9fb26702 100755 --- a/pyaggr3g470r/utils.py +++ b/pyaggr3g470r/utils.py @@ -78,8 +78,8 @@ def opened_w_error(filename, mode="r"): finally: f.close() -def fetch(email, feed_id=None): - cmd = ['python', conf.basedir+'/fetch.py', email, str(feed_id)] +def fetch(id, feed_id=None): + cmd = ['python', conf.basedir+'/fetch.py', str(id), str(feed_id)] p = subprocess.Popen(cmd, stdout=subprocess.PIPE) def import_opml(email, opml_content): -- cgit