From 1f9e07c4fe38ea6e02bf9a6a3849270e95fd7d85 Mon Sep 17 00:00:00 2001 From: MadcowOG Date: Tue, 3 May 2022 20:05:13 -0700 Subject: [PATCH] Added message that will show tor auth failed. --- app/request.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/request.py b/app/request.py index f7bb4f0..f6f62bf 100644 --- a/app/request.py +++ b/app/request.py @@ -58,6 +58,7 @@ def send_tor_signal(signal: Signal) -> bool: os.environ['TOR_AVAILABLE'] = '1' except (SocketError, ConnectionRefusedError, ConnectionError): os.environ['TOR_AVAILABLE'] = '0' + print("Authentication with control port failed. Tor will be unavailable.") return False