aboutsummaryrefslogtreecommitdiff
path: root/feedgetter.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2010-03-23 14:55:55 +0100
committercedricbonhomme <devnull@localhost>2010-03-23 14:55:55 +0100
commitcca6bdb9970651d44cdc360c89c6d24443520d58 (patch)
tree1e9cc44b0d4a35e57283bfc5d8ce4dda14389c05 /feedgetter.py
parentMinor bug fix. (diff)
downloadnewspipe-cca6bdb9970651d44cdc360c89c6d24443520d58.tar.gz
newspipe-cca6bdb9970651d44cdc360c89c6d24443520d58.tar.bz2
newspipe-cca6bdb9970651d44cdc360c89c6d24443520d58.zip
Minor improvements for the e-mail notification.
Diffstat (limited to 'feedgetter.py')
-rwxr-xr-xfeedgetter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/feedgetter.py b/feedgetter.py
index 7e6e4c71..36495b43 100755
--- a/feedgetter.py
+++ b/feedgetter.py
@@ -127,7 +127,7 @@ class FeedGetter(object):
if result[0][0] == "1":
# send the article
utils.send_mail(utils.mail_from, utils.mail_to, \
- a_feed.feed.title.encode('utf-8'), description)
+ a_feed.feed.title.encode('utf-8'), description)
except sqlite3.IntegrityError:
# article already in the base
pass
bgstack15