mirror of
https://github.com/kennethreitz/requests.git
synced 2026-06-05 22:50:18 +00:00
urllib3 bugfix
This commit is contained in:
@@ -46,8 +46,8 @@ class VerifiedHTTPSConnection(HTTPSConnection):
|
||||
SSL certification.
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
HTTPSConnection.__init__()
|
||||
def __init__(self, **kwargs):
|
||||
HTTPSConnection.__init__(self, **kwargs)
|
||||
self.cert_reqs = None
|
||||
self.ca_certs = None
|
||||
|
||||
|
||||
Reference in New Issue
Block a user