aboutsummaryrefslogtreecommitdiff
path: root/fetch.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-08 23:23:43 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-08 23:23:43 +0100
commit8d6a1fc08e1982d474ef837f545cd937de94afab (patch)
tree6d22e4beaaa949138b0dd8414b7827acd7172f47 /fetch.py
parentLog 'bozo' exception. (diff)
downloadnewspipe-8d6a1fc08e1982d474ef837f545cd937de94afab.tar.gz
newspipe-8d6a1fc08e1982d474ef837f545cd937de94afab.tar.bz2
newspipe-8d6a1fc08e1982d474ef837f545cd937de94afab.zip
Fix.
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 f599ca3a..49315d38 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