Submitter | Yuya Nishihara |
---|---|
Date | Feb. 18, 2018, 1:55 p.m. |
Message ID | <20fd00ae43f25ab4db11.1518962109@mimosa> |
Download | mbox | patch |
Permalink | /patch/28088/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/url.py b/mercurial/url.py --- a/mercurial/url.py +++ b/mercurial/url.py @@ -126,8 +126,7 @@ class proxyhandler(urlreq.proxyhandler): proxyurl = str(proxy) proxies = {'http': proxyurl, 'https': proxyurl} - ui.debug('proxying through http://%s:%s\n' % - (proxy.host, proxy.port)) + ui.debug('proxying through %s\n' % util.hidepassword(proxyurl)) else: proxies = {}