aboutsummaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-12-03 00:03:46 +0100
committercedricbonhomme <devnull@localhost>2010-12-03 00:03:46 +0100
commit98e858f08d49b268d0ba28c3037d9835f20ee520 (patch)
tree1c4a43de6c72c61505d5027f3d3886af534b9fbe /utils.py
parentUpdated code for new data structure. #2 (diff)
downloadnewspipe-98e858f08d49b268d0ba28c3037d9835f20ee520.tar.gz
newspipe-98e858f08d49b268d0ba28c3037d9835f20ee520.tar.bz2
newspipe-98e858f08d49b268d0ba28c3037d9835f20ee520.zip
Scheißdreck. Removed useless print
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