From: Kenneth Reitz Date: Sat, 1 Oct 2011 10:04:41 +0000 (-0400) Subject: urllib3 bugfix X-Git-Tag: v0.8.0~94^2~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e1c0646f95930cfbd1b404aa820eda3f9836080f;p=services%2Fpython-requests.git urllib3 bugfix --- diff --git a/requests/packages/urllib3/connectionpool.py b/requests/packages/urllib3/connectionpool.py index 92ce154..36ecfb5 100644 --- a/requests/packages/urllib3/connectionpool.py +++ b/requests/packages/urllib3/connectionpool.py @@ -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