diff options
| author | Steve Dower <steve.dower@microsoft.com> | 2022-06-17 16:11:24 +0100 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-08-09 19:39:46 -0400 |
| commit | a223350c9af7f1aba69993020b126f6d0646d4f5 (patch) | |
| tree | 6d02331d421ffac39d9638062194f69b534c4f77 | |
| parent | d7b020b32349c3d93bb95502fa4f5c566fab2269 (diff) | |
| download | python-setuptools-git-a223350c9af7f1aba69993020b126f6d0646d4f5.tar.gz | |
Fixup bad super() call
| -rw-r--r-- | distutils/_msvccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/distutils/_msvccompiler.py b/distutils/_msvccompiler.py index c9f0bff0..0a19109f 100644 --- a/distutils/_msvccompiler.py +++ b/distutils/_msvccompiler.py @@ -563,7 +563,7 @@ class MSVCCompiler(CCompiler): def _fix_compile_args(self, output_dir, macros, include_dirs): """Corrects arguments to the compile() method and add compiler-specific dirs""" - fixed_args = super()._fix_lib_args(output_dir, macros, include_dirs) + fixed_args = super()._fix_compile_args(output_dir, macros, include_dirs) return ( fixed_args[0], # output_dir fixed_args[1], # macros |
