# HG changeset patch # User Gregory Szorc # Date 2016-05-26 02:54:06 # Node ID d6b9468eebee3d947522be37b0dc91b9b56ccf8b # Parent cca59ef27e6086a9578fd3b62c41084de96cc000 httpconnection: remove use of sslkwargs It now does nothing. diff --git a/mercurial/httpconnection.py b/mercurial/httpconnection.py --- a/mercurial/httpconnection.py +++ b/mercurial/httpconnection.py @@ -280,8 +280,6 @@ class http2handler(urlreq.httphandler, u 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,