]> git.pld-linux.org Git - packages/python-requests.git/blame - system-cert.patch
- updated dependencies
[packages/python-requests.git] / system-cert.patch
CommitLineData
0989c03f
JK
1diff -dur requests-2.18.2.orig/requests/certs.py requests-2.18.2/requests/certs.py
2--- requests-2.18.2.orig/requests/certs.py 2017-05-31 11:19:09.000000000 +0200
3+++ requests-2.18.2/requests/certs.py 2017-08-01 14:30:44.000000000 +0200
4@@ -12,7 +12,14 @@
5 environment, you can change the definition of where() to return a separately
6 packaged CA bundle.
7 """
8-from certifi import where
9+
10+import os
11+
12+if os.path.exists("/etc/certs/ca-certificates.crt"):
13+ def where():
9e57f9c2 14+ return "/etc/certs/ca-certificates.crt"
0989c03f
JK
15+else:
16+ from certifi import where
bd090171
ŁK
17
18 if __name__ == '__main__':
19 print(where())
This page took 0.083087 seconds and 4 git commands to generate.