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 208c161..68456bd 100644 --- a/youtube/comments.py +++ b/youtube/comments.py @@ -187,7 +187,7 @@ def video_comments(video_id, sort=0, offset=0, lc='', secret_key=''): return {} except util.FetchError as e: if e.code == '429' and settings.route_tor: - comments_info['error'] = 'Error: Youtube blocked the request because the Tor exit node is overutilized.' + comments_info['error'] = 'Error: YouTube blocked the request because the Tor exit node is overutilized.' if e.error_message: comments_info['error'] += '\n\n' + e.error_message comments_info['error'] += '\n\nExit node IP address: %s' % e.ip |