diff options
author | cedricbonhomme <devnull@localhost> | 2012-04-16 07:50:23 +0200 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2012-04-16 07:50:23 +0200 |
commit | 9fcf6f898d9285fa960582d53ef60423e9c4777f (patch) | |
tree | 83ced43b23fd14a1bdd590f33607d279f5387f17 | |
parent | Updated documentation (schemas). (diff) | |
download | newspipe-9fcf6f898d9285fa960582d53ef60423e9c4777f.tar.gz newspipe-9fcf6f898d9285fa960582d53ef60423e9c4777f.tar.bz2 newspipe-9fcf6f898d9285fa960582d53ef60423e9c4777f.zip |
Bugifx: the 'feed' dictionary doesn't contains a 'feed_id' key.
-rwxr-xr-x | source/pyAggr3g470r.py | 2 |
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"])) |