diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-02 11:39:05 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-02 11:39:05 -0400 |
commit | 96af0a8db149cc8c45c24c1a9066a71ab1935248 (patch) | |
tree | f7490f64f079ec5ca9cf29de94a2f9930efb3bd6 /pkg_resources.py | |
parent | a6f5642c86af003b1dce6299c2d9a941b2bd63f2 (diff) | |
download | external_python_setuptools-96af0a8db149cc8c45c24c1a9066a71ab1935248.tar.gz external_python_setuptools-96af0a8db149cc8c45c24c1a9066a71ab1935248.tar.bz2 external_python_setuptools-96af0a8db149cc8c45c24c1a9066a71ab1935248.zip |
Correct AttributeError again (this time verified)
--HG--
branch : distribute
Diffstat (limited to 'pkg_resources.py')
-rw-r--r-- | pkg_resources.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg_resources.py b/pkg_resources.py index 844c145d..e0e0c1a3 100644 --- a/pkg_resources.py +++ b/pkg_resources.py @@ -1000,7 +1000,7 @@ variable to point to an accessible directory. return target_path @staticmethod - def warn_unsafe_extraction_path(path): + def _warn_unsafe_extraction_path(path): """ If the default extraction path is overridden and set to an insecure location, such as /tmp, it opens up an opportunity for an attacker to |