Skip to content
Snippets Groups Projects
Commit 45fd131b authored by Pavel Kácha's avatar Pavel Kácha
Browse files

Yet another old ssl module compatibility fix

parent 6dd75dd5
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ class HTTPSConnection(httplib.HTTPSConnection):
def __init__(self, host, **kwargs):
self.ciphers = kwargs.pop('ciphers', None)
self.ca_certs = kwargs.pop('ca_certs', None)
self.ssl_version = kwargs.pop('ssl_version', ssl.PROTOCOL_TLS)
self.ssl_version = kwargs.pop('ssl_version', getattr(ssl, "PROTOCOL_TLS", ssl.PROTOCOL_SSLv23))
httplib.HTTPSConnection.__init__(self,host,**kwargs)
......@@ -270,7 +270,7 @@ class Client(object):
self.pause = int(pause)
self.ciphers = None
self.sslversion = ssl.PROTOCOL_TLS
self.sslversion = getattr(ssl, "PROTOCOL_TLS", ssl.PROTOCOL_SSLv23)
# If Python is new enough to have SSLContext, use it for SSL settings,
# otherwise our own class derived from httplib.HTTPSConnection is used
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment