From fd51975886f655a1a8fbae0d78101413371169eb Mon Sep 17 00:00:00 2001 From: Collin Winter Date: Thu, 30 Aug 2007 18:46:25 +0000 Subject: Fix a typo in the distutils cleanup. --- Lib/distutils/msvccompiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index f5b6704..d239057 100644 --- a/Lib/distutils/msvccompiler.py +++ b/Lib/distutils/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: -- cgit v0.12