aboutsummaryrefslogtreecommitdiff
path: root/pyAggr3g470r.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyAggr3g470r.py')
-rw-r--r--pyAggr3g470r.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 519e8d3d..2fe75bd6 100644
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -266,7 +266,8 @@ class Root:
self.mark_as_read("Article:"+article[3]) # update the database
html += """<h1><i>%s</i> from <a href="/all_articles/%s">%s</a></h1><br />""" % \
- (article[2].encode('utf-8'), rss_feed_id, article[5].encode('utf-8'))
+ (article[2].encode('utf-8'), rss_feed_id, \
+ self.feeds[rss_feed_id][3].encode('utf-8'))
description = article[4].encode('utf-8')
if description:
html += description
bgstack15