diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2013-06-03 10:56:14 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-06-03 10:56:14 -0400 |
| commit | a3ff2d447078018a4cfdb37c8a1fc0bb084b7ed2 (patch) | |
| tree | ac2b2b3bf99b2b6ba13eb184c5e6581fd078f8c3 /setuptools | |
| parent | 8ec07d3b94bc457239a46c84b2725932fc059c70 (diff) | |
| download | python-setuptools-bitbucket-a3ff2d447078018a4cfdb37c8a1fc0bb084b7ed2.tar.gz | |
Correct pkg_resources reference again (broken in e002a2ff195b)
Diffstat (limited to 'setuptools')
| -rw-r--r-- | setuptools/ssl_support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/ssl_support.py b/setuptools/ssl_support.py index 32c8ee3c..6dca5fab 100644 --- a/setuptools/ssl_support.py +++ b/setuptools/ssl_support.py @@ -237,7 +237,7 @@ def find_ca_bundle(): if os.path.isfile(cert_path): return cert_path try: - return resource_filename('certifi', 'cacert.pem') + return pkg_resources.resource_filename('certifi', 'cacert.pem') except (ImportError, ResolutionError, ExtractionError): return None |
