aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/install_scripts.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-01-18 20:46:32 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-01-18 20:46:32 -0500
commite584d52bc8080aa0e1dfec9514068bfef175b7fd (patch)
tree1846cfa1c67d186aff0a0fad4105883c3d49b28b /setuptools/command/install_scripts.py
parentc1f5cdb9d49d2dc6872c1c51a94dbcc95526666a (diff)
downloadexternal_python_setuptools-e584d52bc8080aa0e1dfec9514068bfef175b7fd.tar.gz
external_python_setuptools-e584d52bc8080aa0e1dfec9514068bfef175b7fd.tar.bz2
external_python_setuptools-e584d52bc8080aa0e1dfec9514068bfef175b7fd.zip
Correct command reference.
Diffstat (limited to 'setuptools/command/install_scripts.py')
-rwxr-xr-xsetuptools/command/install_scripts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/install_scripts.py b/setuptools/command/install_scripts.py
index 9d4ac420..20c2cce9 100755
--- a/setuptools/command/install_scripts.py
+++ b/setuptools/command/install_scripts.py
@@ -39,7 +39,7 @@ class install_scripts(orig.install_scripts):
writer = ei.WindowsScriptWriter
# resolve the writer to the environment
writer = writer.best()
- cmd = writer.command_spec_cls.from_param(exec_param)
+ cmd = writer.command_spec_class.from_param(exec_param)
for args in writer.get_args(dist, cmd.as_header()):
self.write_script(*args)