##// END OF EJS Templates
do not disclose proxy user and password in debug messages
TK Soh -
r3170:36ab673f default
parent child Browse files
Show More
@@ -165,7 +165,8 b' class httprepository(remoterepository):'
165 proxyuser, proxypasswd or ''),
165 proxyuser, proxypasswd or ''),
166 proxypath, proxyquery, proxyfrag))
166 proxypath, proxyquery, proxyfrag))
167 handler = urllib2.ProxyHandler({scheme: proxyurl})
167 handler = urllib2.ProxyHandler({scheme: proxyurl})
168 ui.debug(_('proxying through %s\n') % proxyurl)
168 ui.debug(_('proxying through http://%s:%s\n') %
169 (proxyhost, proxyport))
169
170
170 # urllib2 takes proxy values from the environment and those
171 # urllib2 takes proxy values from the environment and those
171 # will take precedence if found, so drop them
172 # will take precedence if found, so drop them
General Comments 0
You need to be logged in to leave comments. Login now