aboutsummaryrefslogtreecommitdiff
path: root/requests/certs.py
diff options
context:
space:
mode:
authorSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 13:41:44 -0700
committerSVN-Git Migration <python-modules-team@lists.alioth.debian.org>2015-10-08 13:41:44 -0700
commit49acd6bb4f0fab20670811f689805462693366c8 (patch)
treeacacb050fb66bf52d192ac2f7b5d32efa4685979 /requests/certs.py
parent200f31df4c8741096e4e644de4f4f60cd8707493 (diff)
parentbf94fe6ca734a95614c33473cad145323d3495d3 (diff)
downloadpython-requests-49acd6bb4f0fab20670811f689805462693366c8.tar
python-requests-49acd6bb4f0fab20670811f689805462693366c8.tar.gz
Initialize git-dpm
Diffstat (limited to 'requests/certs.py')
-rw-r--r--requests/certs.py4
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())