2018-07-24 08:41:54 +02:00
|
|
|
Index: pip-18.0/src/pip/_vendor/certifi/core.py
|
2018-04-20 10:09:42 +02:00
|
|
|
===================================================================
|
2018-07-24 08:41:54 +02:00
|
|
|
--- pip-18.0.orig/src/pip/_vendor/certifi/core.py
|
|
|
|
+++ pip-18.0/src/pip/_vendor/certifi/core.py
|
2018-04-20 10:09:42 +02:00
|
|
|
@@ -7,7 +7,6 @@ certifi.py
|
2018-07-24 08:41:54 +02:00
|
|
|
|
|
|
|
This module returns the installation location of cacert.pem.
|
|
|
|
"""
|
|
|
|
-import os
|
|
|
|
import warnings
|
|
|
|
|
|
|
|
|
|
|
|
@@ -19,9 +18,8 @@ class DeprecatedBundleWarning(Deprecatio
|
|
|
|
|
|
|
|
|
|
|
|
def where():
|
|
|
|
- f = os.path.dirname(__file__)
|
|
|
|
|
|
|
|
- return os.path.join(f, 'cacert.pem')
|
|
|
|
+ return '/etc/ssl/ca-bundle.pem'
|
|
|
|
|
|
|
|
|
|
|
|
def old_where():
|