diff options
Diffstat (limited to 'user/py3-certifi/use-system-certs.patch')
-rw-r--r-- | user/py3-certifi/use-system-certs.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/user/py3-certifi/use-system-certs.patch b/user/py3-certifi/use-system-certs.patch new file mode 100644 index 000000000..bf315aa2f --- /dev/null +++ b/user/py3-certifi/use-system-certs.patch @@ -0,0 +1,13 @@ +--- a/certifi/core.py 2018-01-18 12:27:24.000000000 -0800 ++++ b/certifi/core.py 2018-11-20 18:08:48.230610538 -0800 +@@ -19,9 +19,7 @@ + + + def where(): +- f = os.path.dirname(__file__) +- +- return os.path.join(f, 'cacert.pem') ++ return "/etc/ssl/certs/ca-certificates.crt" + + + def old_where(): |