diff options
author | Collin Winter <collinw@gmail.com> | 2007-08-30 18:46:25 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-08-30 18:46:25 (GMT) |
commit | fd51975886f655a1a8fbae0d78101413371169eb (patch) | |
tree | 9d398989c5181419e0d306b710609d23ed74645a /Lib/distutils/msvccompiler.py | |
parent | 845702c096fd3380d50545398f60c54c64869442 (diff) | |
download | cpython-fd51975886f655a1a8fbae0d78101413371169eb.zip cpython-fd51975886f655a1a8fbae0d78101413371169eb.tar.gz cpython-fd51975886f655a1a8fbae0d78101413371169eb.tar.bz2 |
Fix a typo in the distutils cleanup.
Diffstat (limited to 'Lib/distutils/msvccompiler.py')
-rw-r--r-- | Lib/distutils/msvccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |