added one more warning message by request

This commit is contained in:
Miroslav Stampar 2011-09-27 22:25:15 +00:00
parent b888a84764
commit c0910ca2c8

View File

@ -1690,6 +1690,12 @@ def __setTorProxySettings():
infoMsg = "setting Tor proxy settings" infoMsg = "setting Tor proxy settings"
logger.info(infoMsg) 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 found = None
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)