aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.hgtags2
-rw-r--r--CHANGES.txt7
-rw-r--r--pkg_resources.py2
3 files changed, 10 insertions, 1 deletions
diff --git a/.hgtags b/.hgtags
index f67224cd..04e46e5c 100644
--- a/.hgtags
+++ b/.hgtags
@@ -64,4 +64,6 @@ ddca71ae5ceb9b14512dc60ea83802c10e224cf0 0.6.45
d04c05f035e3a5636006fc34f4be7e6c77035d17 0.7.2
d212e48e0cef689acba57ed017289c027660b23c 0.7.3
85640475dda0621f20e11db0995fa07f51744a98 0.7.4
+b57e5ba934767dd498669b17551678081b3047b5 0.6.46
dd5bbc116c53d3732d22f983e7ca6d8cfabd3b08 0.7.5
+ee2c967017024197b38e39ced852808265387a4b 0.6.47
diff --git a/CHANGES.txt b/CHANGES.txt
index e4fcc37e..a2084ddb 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -63,6 +63,13 @@ Added several features that were slated for setuptools 0.6c12:
* Issue #3: Fixed NameError in SSL support.
------
+0.6.47
+------
+
+* Correct AttributeError in ``ResourceManager.get_cache_path`` introduced in
+ 0.6.46.
+
+------
0.6.46
------
diff --git a/pkg_resources.py b/pkg_resources.py
index b4114946..b6aee28d 100644
--- a/pkg_resources.py
+++ b/pkg_resources.py
@@ -987,7 +987,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)