aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/comments.py
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2018-08-25 14:32:49 -0700
committerJames Taylor <user234683@users.noreply.github.com>2018-08-25 14:32:49 -0700
commit1e540a254224a1b7f79e045d19be8f619c52368b (patch)
tree8beb61208712f9a002102335aedc7a2ffa8a9cff /youtube/comments.py
parentfc001e7427f498ff5d1da46f6bb50393fba74afe (diff)
downloadyt-local-1e540a254224a1b7f79e045d19be8f619c52368b.tar.lz
yt-local-1e540a254224a1b7f79e045d19be8f619c52368b.tar.xz
yt-local-1e540a254224a1b7f79e045d19be8f619c52368b.zip
fix extraneous escape in comment username
Diffstat (limited to 'youtube/comments.py')
-rw-r--r--youtube/comments.py2
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 '',