aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/easy_install.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-08-14 13:30:54 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-08-14 13:30:54 -0400
commit38c43e388fe9aeff84388ff73447504353adc3f4 (patch)
tree120b25c1a7e7fa066208d955e8ef0063ecad56ef /setuptools/command/easy_install.py
parente550b63a52654c4c22127d373ad4e02ce1ce149d (diff)
downloadexternal_python_setuptools-38c43e388fe9aeff84388ff73447504353adc3f4.tar.gz
external_python_setuptools-38c43e388fe9aeff84388ff73447504353adc3f4.tar.bz2
external_python_setuptools-38c43e388fe9aeff84388ff73447504353adc3f4.zip
Fix template rendering error
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-xsetuptools/command/easy_install.py2
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"""