Mercurial > public > mercurial-scm > hg-stable
diff mercurial/httpconnection.py @ 29250:d6b9468eebee
httpconnection: remove use of sslkwargs
It now does nothing.
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Wed, 25 May 2016 19:54:06 -0700 |
parents | e6de6ef3e426 |
children | 3dcaf1c4e90d |
line wrap: on
line diff
--- a/mercurial/httpconnection.py Wed May 25 19:52:02 2016 -0700 +++ b/mercurial/httpconnection.py Wed May 25 19:54:06 2016 -0700 @@ -280,8 +280,6 @@ kwargs['keyfile'] = keyfile kwargs['certfile'] = certfile - kwargs.update(sslutil.sslkwargs(self.ui, host)) - con = HTTPConnection(host, port, use_ssl=True, ssl_wrap_socket=sslutil.wrapsocket, ssl_validator=sslutil.validatesocket,