aboutsummaryrefslogtreecommitdiff
path: root/fetch.py
diff options
context:
space:
mode:
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