Blob Blame History Raw
From 25d4e3912bdd692f055dc846c97c608b806406ff Mon Sep 17 00:00:00 2001
From: Tomas Orsava <torsava@redhat.com>
Date: Thu, 30 Apr 2020 18:09:54 +0200
Subject: [PATCH] Use the system level root certificate instead of the one
 bundled in certifi

https://bugzilla.redhat.com/show_bug.cgi?id=1655253
---
 pipenv/patched/notpip/_vendor/certifi/core.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/pipenv/patched/notpip/_vendor/certifi/core.py b/pipenv/patched/notpip/_vendor/certifi/core.py
index 7271acf..9f0dc20 100644
--- a/pipenv/patched/notpip/_vendor/certifi/core.py
+++ b/pipenv/patched/notpip/_vendor/certifi/core.py
@@ -10,6 +10,4 @@ import os
 
 
 def where():
-    f = os.path.dirname(__file__)
-
-    return os.path.join(f, 'cacert.pem')
+    return '/etc/pki/tls/certs/ca-bundle.crt'
-- 
2.25.1