summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/config.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-09-30 18:27:54 (GMT)
committerGreg Ward <gward@python.net>2000-09-30 18:27:54 (GMT)
commitcb1f4c4d33711a964dcd40b32a562e2acf745fc2 (patch)
tree3e8bd80543d1b5e6c843087678194fa1608d13e6 /Lib/distutils/command/config.py
parent963cd2d85d26467f60a3c03b5025fddfff0cd80c (diff)
downloadcpython-cb1f4c4d33711a964dcd40b32a562e2acf745fc2.zip
cpython-cb1f4c4d33711a964dcd40b32a562e2acf745fc2.tar.gz
cpython-cb1f4c4d33711a964dcd40b32a562e2acf745fc2.tar.bz2
Standardized whitespace around function calls.
Diffstat (limited to 'Lib/distutils/command/config.py')
-rw-r--r--Lib/distutils/command/config.py8
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: