diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-26 08:32:27 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-26 08:32:27 -0500 |
commit | 7824a2b4c6c53615feb18ff558a8a60b44e8fd41 (patch) | |
tree | dc3d13131f486c3e284e0602a39ac67609560c37 /setuptools/command/easy_install.py | |
parent | 732f5e89a8e417ff536d9a51a85d7b328e80dab1 (diff) | |
download | external_python_setuptools-7824a2b4c6c53615feb18ff558a8a60b44e8fd41.tar.gz external_python_setuptools-7824a2b4c6c53615feb18ff558a8a60b44e8fd41.tar.bz2 external_python_setuptools-7824a2b4c6c53615feb18ff558a8a60b44e8fd41.zip |
Reference the proper attribute. Fixes #339.
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 206fc58d..e057b508 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -483,7 +483,7 @@ class easy_install(Command): """).lstrip() def cant_write_to_target(self): - msg = self._cant_write_msg % (sys.exc_info()[1], self.install_dir,) + msg = self.__cant_write_msg % (sys.exc_info()[1], self.install_dir,) if not os.path.exists(self.install_dir): msg += '\n' + self.__not_exists_id |