aboutsummaryrefslogtreecommitdiff
path: root/pyAggr3g470r.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-03-20 21:21:49 +0100
committercedricbonhomme <devnull@localhost>2012-03-20 21:21:49 +0100
commit70bdfda0dcb371973a5929bc9bc50593154867a6 (patch)
tree730ad2913aa68111a6fd1a5cde23c593711edb2a /pyAggr3g470r.py
parentRemoved articles.py. (diff)
downloadnewspipe-70bdfda0dcb371973a5929bc9bc50593154867a6.tar.gz
newspipe-70bdfda0dcb371973a5929bc9bc50593154867a6.tar.bz2
newspipe-70bdfda0dcb371973a5929bc9bc50593154867a6.zip
MongoDB collection of articles is indexed with 'article_date'.
Diffstat (limited to 'pyAggr3g470r.py')
-rwxr-xr-xpyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index cd01817c..ea708d18 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -1001,7 +1001,7 @@ class Root:
html += "<h1>You are receiving e-mails for the following feeds:</h1>\n"
for feed in feeds:
html += """\t<a href="/articles/%s">%s</a> - <a href="/mail_notification/0:%s">Stop</a><br />\n""" % \
- (feed["feed_id"], feed.feed_title, feed.feed_id)
+ (feed["feed_id"], feed["feed_title"], feed["feed_id"])
else:
html += "<p>No active notifications.<p>\n"
html += """<p>Notifications are sent to: <a href="mail:%s">%s</a></p>""" % \
bgstack15