diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-08-14 13:30:54 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-08-14 13:30:54 -0400 |
commit | 38c43e388fe9aeff84388ff73447504353adc3f4 (patch) | |
tree | 120b25c1a7e7fa066208d955e8ef0063ecad56ef | |
parent | e550b63a52654c4c22127d373ad4e02ce1ce149d (diff) | |
download | external_python_setuptools-38c43e388fe9aeff84388ff73447504353adc3f4.tar.gz external_python_setuptools-38c43e388fe9aeff84388ff73447504353adc3f4.tar.bz2 external_python_setuptools-38c43e388fe9aeff84388ff73447504353adc3f4.zip |
Fix template rendering error
-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 febfdcd1..8b88cd1d 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1260,7 +1260,7 @@ Here are some of your options for correcting the problem: https://pythonhosted.org/setuptools/easy_install.html#custom-installation-locations Please make the appropriate changes for your system and try again.""" - return template % self.install_dir, os.environ.get('PYTHONPATH','') + return template % (self.install_dir, os.environ.get('PYTHONPATH','')) def install_site_py(self): """Make sure there's a site.py in the target dir, if needed""" |