From 63fadbf6cb399763067638b11af2a735b763b2ba Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Mon, 1 Feb 2010 23:05:34 +0100 Subject: Bug fix : bad descrition URL in [All articles] pages. --- pyAggr3g470r.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pyAggr3g470r.py') diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py index 1f01115f..923ef9c4 100644 --- a/pyAggr3g470r.py +++ b/pyAggr3g470r.py @@ -95,7 +95,7 @@ class Root: if article_id == article[0]: html += article[4].encode('utf-8') html += """
\nComplete story""" % (article[3].encode('utf-8'),) - html += htmlfooter + html += "
" + htmlfooter return html def all_articles(self, feed_title): @@ -110,7 +110,7 @@ class Root: html += article[1].encode('utf-8') + " - " + \ '' + article[2].encode('utf-8') + "" + \ - """ - [description]""" % (article[3].encode('utf-8'),) + \ + """ - [description]""" % (article[0].encode('utf-8'),) + \ "
\n" html += """

All feeds

""" -- cgit