diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-02 08:23:50 -0400 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-07-02 08:23:50 -0400 |
| commit | e9142bcf0f06341e855e37b6744f0626ea1a9d43 (patch) | |
| tree | e66217088488bb25135895192eb7b227784e8a4e /pkg_resources.py | |
| parent | 1ce8f258058dd17fe833968a90e75da6935109a6 (diff) | |
| parent | a6f5642c86af003b1dce6299c2d9a941b2bd63f2 (diff) | |
| download | python-setuptools-git-e9142bcf0f06341e855e37b6744f0626ea1a9d43.tar.gz | |
Merge fix for AttributeError0.6.47
--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 8f962ebd..52543a5f 100644 --- a/pkg_resources.py +++ b/pkg_resources.py @@ -989,7 +989,7 @@ variable to point to an accessible directory. extract, as it tracks the generated names for possible cleanup later. """ extract_path = self.extraction_path or get_default_cache() - self._warn_unsafe_extraction(extract_path) + self._warn_unsafe_extraction_path(extract_path) target_path = os.path.join(extract_path, archive_name+'-tmp', *names) try: _bypass_ensure_directory(target_path) |
