aboutsummaryrefslogtreecommitdiff
path: root/pyAggr3g470r.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyAggr3g470r.py')
-rwxr-xr-xpyAggr3g470r.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 4ade91b9..f4964947 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -408,9 +408,10 @@ class Root:
html += """&nbsp;&nbsp;<a href="/delete_article/%s:%s"><img src="/css/img/cross.png" title="Delete this article" /></a>""" % \
(feed_id, article_id)
html += "<br /><br />"
- description = article[4].encode('utf-8')
+ description = article[4]
if description:
- html += description
+ #html += utils.unescape(description).encode('utf-8')
+ html += description.encode('utf-8')
else:
html += "No description available."
html += "\n</div>\n<hr />\n"
bgstack15