fix extraneous escape in comment username

This commit is contained in:
James Taylor 2018-08-25 14:32:49 -07:00
parent fc001e7427
commit 1e540a2542

View File

@ -210,7 +210,7 @@ def get_comments_html(result):
else:
avatar = ''
html_result += comment_template.substitute(
author=html.escape(comment['author']),
author=comment['author'],
author_url = URL_ORIGIN + comment['author_url'],
avatar = avatar,
likes = str(comment['likes']) + ' likes' if str(comment['likes']) != '0' else '',