summaryrefslogtreecommitdiff
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
commitcd020b6ea32a842f9d8e65b34b6c44b083e47b11 (patch)
treef8b6b409cff527e6d31fbd2b2486e5ef7fa2bbf9
parentdc191096f1af5ba4e254ab3e0e461df4d9001a7c (diff)
downloadpython-setuptools-bitbucket-cd020b6ea32a842f9d8e65b34b6c44b083e47b11.tar.gz
Correct command reference.
-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)