diff options
Diffstat (limited to 'Lib/distutils/command/config.py')
| -rw-r--r-- | Lib/distutils/command/config.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/distutils/command/config.py b/Lib/distutils/command/config.py index 5c3f26a..a13055c 100644 --- a/Lib/distutils/command/config.py +++ b/Lib/distutils/command/config.py @@ -87,10 +87,10 @@ class config (Command): # import. from distutils.ccompiler import CCompiler, new_compiler if not isinstance(self.compiler, CCompiler): - self.compiler = new_compiler (compiler=self.compiler, - verbose=self.noisy, - dry_run=self.dry_run, - force=1) + self.compiler = new_compiler(compiler=self.compiler, + verbose=self.noisy, + dry_run=self.dry_run, + force=1) if self.include_dirs: self.compiler.set_include_dirs(self.include_dirs) if self.libraries: |
