diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-08-25 14:32:49 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-08-25 14:32:49 -0700 |
commit | 1e540a254224a1b7f79e045d19be8f619c52368b (patch) | |
tree | 8beb61208712f9a002102335aedc7a2ffa8a9cff | |
parent | fc001e7427f498ff5d1da46f6bb50393fba74afe (diff) | |
download | yt-local-1e540a254224a1b7f79e045d19be8f619c52368b.tar.lz yt-local-1e540a254224a1b7f79e045d19be8f619c52368b.tar.xz yt-local-1e540a254224a1b7f79e045d19be8f619c52368b.zip |
fix extraneous escape in comment username
-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 '', |