aboutsummaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils.py')
-rwxr-xr-xutils.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/utils.py b/utils.py
index 620efd44..533f5e4c 100755
--- a/utils.py
+++ b/utils.py
@@ -412,13 +412,6 @@ def load_feed():
c.close()
LOCKER.release()
- #return (articles, feeds, nb_articles, nb_unread_articles, nb_favorites, nb_mail_notifications)
- for feed in feeds.values():
- print feed.feed_title
- print feed.mail
- print feed.articles[0].article_description
- print
- break
return (feeds, nb_articles, nb_unread_articles, nb_favorites, nb_mail_notifications)
LOCKER.release()
- return (articles, feeds, nb_articles, nb_unread_articles, nb_favorites, nb_mail_notifications) \ No newline at end of file
+ return (feeds, nb_articles, nb_unread_articles, nb_favorites, nb_mail_notifications) \ No newline at end of file
bgstack15