summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCollin Winter <collinw@gmail.com>2007-08-30 18:46:25 +0000
committerCollin Winter <collinw@gmail.com>2007-08-30 18:46:25 +0000
commitb7375849d526bedd70683539901013baaf9edcea (patch)
tree28f9b781cd7de1b1151854a549f49bd37726c73a
parentbf9ae3584f023df6f04f88e17cfe987e004de033 (diff)
downloadpython-setuptools-git-b7375849d526bedd70683539901013baaf9edcea.tar.gz
Fix a typo in the distutils cleanup.
-rw-r--r--msvccompiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/msvccompiler.py b/msvccompiler.py
index f5b67049..d239057b 100644
--- a/msvccompiler.py
+++ b/msvccompiler.py
@@ -442,7 +442,7 @@ class MSVCCompiler(CCompiler) :
if debug:
pass # XXX what goes here?
try:
- self.([self.lib] + lib_args)
+ self.spawn([self.lib] + lib_args)
except DistutilsExecError as msg:
raise LibError(msg)
else: