diff options
Diffstat (limited to 'debian/patches/01_use-system-ca-certificates.patch')
-rw-r--r-- | debian/patches/01_use-system-ca-certificates.patch | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/debian/patches/01_use-system-ca-certificates.patch b/debian/patches/01_use-system-ca-certificates.patch index 5fec645..f079c99 100644 --- a/debian/patches/01_use-system-ca-certificates.patch +++ b/debian/patches/01_use-system-ca-certificates.patch @@ -4,15 +4,15 @@ Author: Daniele Tricoli <eriol@mornie.org> Forwarded: not-needed Last-Update: 2013-01-19 ---- a/requests/certs.py -+++ b/requests/certs.py -@@ -25,7 +25,7 @@ - if certifi: - return certifi.where() - +--- a/requests/certs.py 2013-04-25 22:54:02.000000000 +0000 ++++ b/requests/certs.py 2013-04-25 22:54:34.000000000 +0000 +@@ -18,7 +18,7 @@ + def where(): + """Return the preferred certificate bundle.""" + # vendored bundle inside Requests - return os.path.join(os.path.dirname(__file__), 'cacert.pem') + return '/etc/ssl/certs/ca-certificates.crt' - + if __name__ == '__main__': print(where()) --- a/setup.py |