Blame SOURCES/dummy-certifi.patch

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