diff options
Diffstat (limited to 'youtube/comments.py')
-rw-r--r-- | youtube/comments.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/comments.py b/youtube/comments.py index 70712f6..e662d19 100644 --- a/youtube/comments.py +++ b/youtube/comments.py @@ -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 '', |