From 1e540a254224a1b7f79e045d19be8f619c52368b Mon Sep 17 00:00:00 2001 From: James Taylor Date: Sat, 25 Aug 2018 14:32:49 -0700 Subject: fix extraneous escape in comment username --- youtube/comments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'youtube/comments.py') 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 '', -- cgit v1.2.3