diff options
author | Daniele Tricoli <eriol@mornie.org> | 2015-10-08 13:41:42 -0700 |
---|---|---|
committer | SVN-Git Migration <python-modules-team@lists.alioth.debian.org> | 2015-10-08 13:41:42 -0700 |
commit | 3345f5ca045c5cb0a2f55ad39244c5ad37ce385e (patch) | |
tree | 50f3c7ccd5b81a988117152611b27afb3a16ab8a /requests | |
parent | b4a5af4fcbf4e5d0f741aaf9978c728235b11a56 (diff) | |
download | python-requests-3345f5ca045c5cb0a2f55ad39244c5ad37ce385e.tar python-requests-3345f5ca045c5cb0a2f55ad39244c5ad37ce385e.tar.gz |
Use the bundle provided by ca-certificates instead of
the embedded one.
Forwarded: not-needed
Last-Update: 2014-10-08
Patch-Name: 01_use-system-ca-certificates.patch
Diffstat (limited to 'requests')
-rw-r--r-- | requests/certs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/requests/certs.py b/requests/certs.py index 07e6475..e61ee5d 100644 --- a/requests/certs.py +++ b/requests/certs.py @@ -18,8 +18,8 @@ try: except ImportError: def where(): """Return the preferred certificate bundle.""" - # vendored bundle inside Requests - return os.path.join(os.path.dirname(__file__), 'cacert.pem') + # On Debian systems use ca-certificates + return '/etc/ssl/certs/ca-certificates.crt' if __name__ == '__main__': print(where()) |