aboutsummaryrefslogtreecommitdiff
path: root/feedgetter.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-03-22 23:00:26 +0100
committercedricbonhomme <devnull@localhost>2010-03-22 23:00:26 +0100
commit71367fc2d7fc4b07cb4cc0c4decd336893b1c4bb (patch)
tree17033ca2bae719861dfeec940c23597f4db3dad8 /feedgetter.py
parentAdded: email notification of new articles. (diff)
downloadnewspipe-71367fc2d7fc4b07cb4cc0c4decd336893b1c4bb.tar.gz
newspipe-71367fc2d7fc4b07cb4cc0c4decd336893b1c4bb.tar.bz2
newspipe-71367fc2d7fc4b07cb4cc0c4decd336893b1c4bb.zip
Removed some comments.
Diffstat (limited to 'feedgetter.py')
-rwxr-xr-xfeedgetter.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/feedgetter.py b/feedgetter.py
index 68c90aa2..1ea9d9d9 100755
--- a/feedgetter.py
+++ b/feedgetter.py
@@ -136,9 +136,7 @@ class FeedGetter(object):
feed_link))
result = self.c.execute("SELECT mail from feeds WHERE feed_site_link='" + \
a_feed.feed.link.encode('utf-8') + "'").fetchall()
- print result
if result[0][0] == "1":
- print "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
# send the article
utils.send_mail(utils.mail_from, utils.mail_to, \
a_feed.feed.title.encode('utf-8'), description)
bgstack15