Commit 7824a2b4 authored by Jason R. Coombs's avatar Jason R. Coombs

Reference the proper attribute. Fixes #339.

parent 732f5e89
...@@ -483,7 +483,7 @@ class easy_install(Command): ...@@ -483,7 +483,7 @@ class easy_install(Command):
""").lstrip() """).lstrip()
def cant_write_to_target(self): 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): if not os.path.exists(self.install_dir):
msg += '\n' + self.__not_exists_id msg += '\n' + self.__not_exists_id
......
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