]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix a typo in the distutils cleanup.
authorCollin Winter <collinw@gmail.com>
Thu, 30 Aug 2007 18:46:25 +0000 (18:46 +0000)
committerCollin Winter <collinw@gmail.com>
Thu, 30 Aug 2007 18:46:25 +0000 (18:46 +0000)
Lib/distutils/msvccompiler.py

index f5b67049effe85245908bbb047e9ddf1f3bf1ba5..d239057bac4036291a25ce8128ff791f610f841c 100644 (file)
@@ -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: