Update patch to find ca_certs in the correct place.

This commit is contained in:
Ralph Bean 2013-10-28 13:14:00 -04:00
commit 3df0026b20
2 changed files with 5 additions and 2 deletions

View file

@ -14,7 +14,7 @@ Index: urllib3-1.5/urllib3/connectionpool.py
block=False, headers=None,
key_file=None, cert_file=None,
- cert_reqs='CERT_NONE', ca_certs=None):
+ cert_reqs='CERT_REQUIRED', ca_certs='/etc/ssl/certs/ca-certificates.crt'):
+ cert_reqs='CERT_REQUIRED', ca_certs='/etc/ssl/certs/ca-bundle.crt'):
super(HTTPSConnectionPool, self).__init__(host, port,
strict, timeout, maxsize,