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 | ef75b8b873d459003cbf90d320d5941cc82f9405 (patch) | |
tree | abdd9a2d2c625b8dcdce617fad8ff98b378214f0 | |
parent | ccc570ac00b66b799cd8e626543340786df1bcd2 (diff) | |
download | external_python_setuptools-ef75b8b873d459003cbf90d320d5941cc82f9405.tar.gz external_python_setuptools-ef75b8b873d459003cbf90d320d5941cc82f9405.tar.bz2 external_python_setuptools-ef75b8b873d459003cbf90d320d5941cc82f9405.zip |
Correct pkg_resources reference again (broken in e002a2ff195b)
-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 |