httpconnection: remove use of sslkwargs
authorGregory Szorc <gregory.szorc@gmail.com>
Wed, 25 May 2016 19:54:06 -0700
changeset 29250 d6b9468eebee
parent 29249 cca59ef27e60
child 29251 31acc78c632a
httpconnection: remove use of sslkwargs It now does nothing.
mercurial/httpconnection.py
--- 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,