From 3f310bfc3308be5cede232339a724abe413d4d96 Mon Sep 17 00:00:00 2001 From: James Taylor Date: Sat, 1 Feb 2020 15:14:26 -0800 Subject: Adjust 429 error message. A Tor Browser restart is not required. The New Identity button suffices to get the socks proxy to use a new exit node. --- youtube/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'youtube/__init__.py') diff --git a/youtube/__init__.py b/youtube/__init__.py index 9e95256..8675c4b 100644 --- a/youtube/__init__.py +++ b/youtube/__init__.py @@ -41,8 +41,8 @@ def error_page(e): and settings.route_tor ): error_message = ('Error: Youtube blocked the request because the Tor' - ' exit node is overcrowded. Try getting a new exit node by' - ' restarting the Tor Browser.') + ' exit node is overutilized. Try getting a new exit node by' + ' using the New Identity button in the Tor Browser.') if exc_info()[1].ip: error_message += ' Exit node IP address: ' + exc_info()[1].ip return flask.render_template('error.html', error_message=error_message), 502 -- cgit v1.2.3