From cd0a981c271b04fb877cb7d11e093c335f2f061b Mon Sep 17 00:00:00 2001 From: Carsten Jacobsen Date: Fri, 25 May 2018 16:34:13 -0700 Subject: [PATCH] Python3 Updates --- hyperwallet/utils/apiclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperwallet/utils/apiclient.py b/hyperwallet/utils/apiclient.py index 9b2461c..d41617d 100644 --- a/hyperwallet/utils/apiclient.py +++ b/hyperwallet/utils/apiclient.py @@ -48,7 +48,7 @@ def __init__(self, username, password, server): # The default connection to persist authentication and SSL settings. defaultSession = requests.Session() - defaultSession.mount(self.server, SSLAdapter(ssl.PROTOCOL_TLSv1_2)) + defaultSession.mount(self.server, SSLAdapter()) defaultSession.auth = (self.username, self.password) defaultSession.headers = self.baseHeaders