aboutsummaryrefslogtreecommitdiff
path: root/fetch.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-08 22:48:21 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-08 22:48:21 +0100
commitdeade3f7e97921ddc7b5d619b2376083525f717c (patch)
treee935a01c075264160c52f680ab708f009c81079d /fetch.py
parentUpdated translations. (diff)
downloadnewspipe-deade3f7e97921ddc7b5d619b2376083525f717c.tar.gz
newspipe-deade3f7e97921ddc7b5d619b2376083525f717c.tar.bz2
newspipe-deade3f7e97921ddc7b5d619b2376083525f717c.zip
Log 'bozo' exception.
Diffstat (limited to 'fetch.py')
-rwxr-xr-xfetch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fetch.py b/fetch.py
index 67b9b710..f599ca3a 100755
--- a/fetch.py
+++ b/fetch.py
@@ -26,6 +26,6 @@ if __name__ == "__main__":
for user in users:
if user.activation_key == "":
- print "Fetching articles for", user.nickname
+ print("Fetching articles for", user.nickname)
feed_getter = crawler.FeedGetter(user.email)
feed_getter.retrieve_feed(feed_id)
bgstack15