From c0910ca2c8446a74cc4020f517b5c474e0a4a806 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 27 Sep 2011 22:25:15 +0000 Subject: [PATCH] added one more warning message by request --- lib/core/option.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/core/option.py b/lib/core/option.py index ff1207fcc..d2b36f8bb 100644 --- a/lib/core/option.py +++ b/lib/core/option.py @@ -1690,6 +1690,12 @@ def __setTorProxySettings(): infoMsg = "setting Tor proxy settings" logger.info(infoMsg) + warnMsg = "please make sure that you've configured " + warnMsg+= "either Privoxy (8118/tcp) or Polipo (8123/tcp) " + warnMsg+= "to forward the requests to your local SOCKS5 " + warnMsg+= "instance of TOR client (usually 9050/tcp)" + logger.warning(warnMsg) + found = None s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)