# HG changeset patch # User Gregory Szorc # Date 1464231246 25200 # Node ID d6b9468eebee3d947522be37b0dc91b9b56ccf8b # Parent cca59ef27e6086a9578fd3b62c41084de96cc000 httpconnection: remove use of sslkwargs It now does nothing. diff -r cca59ef27e60 -r d6b9468eebee 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,