]> git.pld-linux.org Git - packages/python3-requests.git/blob - system-cert.patch
drop autogenerated deps
[packages/python3-requests.git] / system-cert.patch
1 diff -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():
14 +        return "/etc/certs/ca-certificates.crt"
15 +else:
16 +    from certifi import where
17  
18  if __name__ == '__main__':
19      print(where())
This page took 0.031513 seconds and 3 git commands to generate.