archrelease: copy trunk to extra-x86_64
[arch-packages.git] / python-requests / trunk / certs.patch
blob47a32f380241dd57f14dda58f80bd70f464c8e42
1 diff --git a/requests/certs.py b/requests/certs.py
2 index d1a378d7..4e0bffd4 100644
3 --- a/requests/certs.py
4 +++ b/requests/certs.py
5 @@ -12,7 +12,8 @@ If you are packaging Requests, e.g., for a Linux distribution or a managed
6 environment, you can change the definition of where() to return a separately
7 packaged CA bundle.
8 """
9 -from certifi import where
10 +def where():
11 + return "/etc/ssl/certs/ca-certificates.crt"
13 if __name__ == '__main__':
14 print(where())