aboutsummaryrefslogtreecommitdiff
path: root/fetch.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 20:11:44 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 20:11:44 +0100
commitd579ef0e6fff66f0689a5eb98781395a0a68a9e3 (patch)
tree4e2d881da5a091e364723d87234538f78f09e408 /fetch.py
parentbug when the list of feeds to fetch is empty (diff)
downloadnewspipe-d579ef0e6fff66f0689a5eb98781395a0a68a9e3.tar.gz
newspipe-d579ef0e6fff66f0689a5eb98781395a0a68a9e3.tar.bz2
newspipe-d579ef0e6fff66f0689a5eb98781395a0a68a9e3.zip
test
Diffstat (limited to 'fetch.py')
-rwxr-xr-xfetch.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/fetch.py b/fetch.py
index db950aa0..ce4adb50 100755
--- a/fetch.py
+++ b/fetch.py
@@ -26,6 +26,7 @@ if __name__ == "__main__":
feed_id = int(sys.argv[2])
except:
feed_id = None
+ print(feed_id)
for user in users:
if user.activation_key == "":
bgstack15