fa41780
--- certifi-2016.9.26/certifi/core.py	2016-12-28 12:58:47.917774691 -0800
fa41780
+++ certifi-2016.9.26/certifi/core.py.new	2016-12-28 13:04:18.631100213 -0800
fa41780
@@ -13,24 +13,27 @@
fa41780
 
fa41780
 class DeprecatedBundleWarning(DeprecationWarning):
fa41780
     """
fa41780
-    The weak security bundle is being deprecated. Please bother your service
fa41780
-    provider to get them to stop using cross-signed roots.
fa41780
+    The weak security bundle is being deprecated upstream. In this Fedora
fa41780
+    package, there *is* no weak security bundle, you will get the shared
fa41780
+    system certificate trust bundle from both where() and old_where().
fa41780
+    Please bother your service provider to get them to stop using
fa41780
+    cross-signed roots.
fa41780
     """
fa41780
 
fa41780
 
fa41780
 def where():
fa41780
     f = os.path.split(__file__)[0]
fa41780
 
fa41780
-    return os.path.join(f, 'cacert.pem')
39b6e09
+    return "/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem"
fa41780
 
fa41780
 
fa41780
 def old_where():
fa41780
     warnings.warn(
fa41780
-        "The weak security bundle is being deprecated.",
fa41780
+        "Weak security bundle is deprecated upstream, doesn't exist on Fedora",
fa41780
         DeprecatedBundleWarning
fa41780
     )
fa41780
     f = os.path.split(__file__)[0]
fa41780
-    return os.path.join(f, 'weak.pem')
39b6e09
+    return "/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem"
fa41780
 
fa41780
 if __name__ == '__main__':
fa41780
     print(where())