diff options
| -rw-r--r-- | .hgtags | 1 | ||||
| -rw-r--r-- | CHANGES.txt | 7 | ||||
| -rw-r--r-- | pkg_resources.py | 2 |
3 files changed, 9 insertions, 1 deletions
@@ -68,3 +68,4 @@ b57e5ba934767dd498669b17551678081b3047b5 0.6.46 dd5bbc116c53d3732d22f983e7ca6d8cfabd3b08 0.7.5 ee2c967017024197b38e39ced852808265387a4b 0.6.47 48d3d26cbea68e21c96e51f01092e8fdead5cd60 0.7.6 +cae9127e0534fc46d7ddbc11f68dc88fd9311459 0.6.48 diff --git a/CHANGES.txt b/CHANGES.txt index 587e336c..31d6bc89 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -69,6 +69,13 @@ Added several features that were slated for setuptools 0.6c12: * Issue #3: Fixed NameError in SSL support. ------ +0.6.48 +------ + +* Correct AttributeError in ``ResourceManager.get_cache_path`` introduced in + 0.6.46 (redo). + +------ 0.6.47 ------ diff --git a/pkg_resources.py b/pkg_resources.py index b6aee28d..eb351103 100644 --- a/pkg_resources.py +++ b/pkg_resources.py @@ -998,7 +998,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 |
