diff options
| author | Collin Winter <collinw@gmail.com> | 2007-08-30 18:46:25 +0000 |
|---|---|---|
| committer | Collin Winter <collinw@gmail.com> | 2007-08-30 18:46:25 +0000 |
| commit | b7375849d526bedd70683539901013baaf9edcea (patch) | |
| tree | 28f9b781cd7de1b1151854a549f49bd37726c73a | |
| parent | bf9ae3584f023df6f04f88e17cfe987e004de033 (diff) | |
| download | python-setuptools-git-b7375849d526bedd70683539901013baaf9edcea.tar.gz | |
Fix a typo in the distutils cleanup.
| -rw-r--r-- | msvccompiler.py | 2 |
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: |
