Commit e9142bcf authored by Jason R. Coombs's avatar Jason R. Coombs

Merge fix for AttributeError

--HG--
branch : distribute
parents 1ce8f258 a6f5642c
...@@ -2,6 +2,13 @@ ...@@ -2,6 +2,13 @@
CHANGES CHANGES
======= =======
------
0.6.47
------
* Correct AttributeError in ``ResourceManager.get_cache_path`` introduced in
0.6.46.
------ ------
0.6.46 0.6.46
------ ------
......
...@@ -989,7 +989,7 @@ variable to point to an accessible directory. ...@@ -989,7 +989,7 @@ variable to point to an accessible directory.
extract, as it tracks the generated names for possible cleanup later. extract, as it tracks the generated names for possible cleanup later.
""" """
extract_path = self.extraction_path or get_default_cache() 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) target_path = os.path.join(extract_path, archive_name+'-tmp', *names)
try: try:
_bypass_ensure_directory(target_path) _bypass_ensure_directory(target_path)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment