Blame SOURCES/dummy-certifi.patch

4fee97
diff --git a/pip/_vendor/requests/certs.py b/pip/_vendor/requests/certs.py
4fee97
index f922b99..2c9d347 100644
4fee97
--- a/pip/_vendor/requests/certs.py
4fee97
+++ b/pip/_vendor/requests/certs.py
4fee97
@@ -14,12 +14,13 @@ packaged CA bundle.
4fee97
 import os.path
4fee97
 
4fee97
 try:
4fee97
+    raise ImportError # force fallback
4fee97
     from certifi import where
4fee97
 except ImportError:
4fee97
     def where():
4fee97
         """Return the preferred certificate bundle."""
4fee97
-        # vendored bundle inside Requests
4fee97
-        return os.path.join(os.path.dirname(__file__), 'cacert.pem')
4fee97
+        # system CA certs
4fee97
+        return '/etc/pki/tls/certs/ca-bundle.crt'
4fee97
 
4fee97
 if __name__ == '__main__':
4fee97
     print(where())