aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-04-16 07:50:23 +0200
committercedricbonhomme <devnull@localhost>2012-04-16 07:50:23 +0200
commit9fcf6f898d9285fa960582d53ef60423e9c4777f (patch)
tree83ced43b23fd14a1bdd590f33607d279f5387f17 /source
parentUpdated documentation (schemas). (diff)
downloadnewspipe-9fcf6f898d9285fa960582d53ef60423e9c4777f.tar.gz
newspipe-9fcf6f898d9285fa960582d53ef60423e9c4777f.tar.bz2
newspipe-9fcf6f898d9285fa960582d53ef60423e9c4777f.zip
Bugifx: the 'feed' dictionary doesn't contains a 'feed_id' key.
Diffstat (limited to 'source')
-rwxr-xr-xsource/pyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 1284ea3e..93e40c9a 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -593,7 +593,7 @@ class Root:
html += """<p>You are receiving articles from this feed to the address: <a href="mail:%s">%s</a>. """ % \
(utils.mail_to, utils.mail_to)
html += """<a href="/mail_notification/0:%s">Stop</a> receiving articles from this feed.</p>""" % \
- (feed[feed_id], )
+ (feed_id, )
if articles != []:
last_article = utils.string_to_datetime(str(articles[0]["article_date"]))
bgstack15