summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/core.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-09-26 01:56:15 (GMT)
committerGreg Ward <gward@python.net>2000-09-26 01:56:15 (GMT)
commitbe86bdea734bc53b25698ff5961183cbb5352ffd (patch)
tree9a3b3644a07e64af2c3f7dc4893e4cc6f60f0627 /Lib/distutils/core.py
parentfd7b91eff98d4e5fafbe50be0c875d1644bcfa6f (diff)
downloadcpython-be86bdea734bc53b25698ff5961183cbb5352ffd.zip
cpython-be86bdea734bc53b25698ff5961183cbb5352ffd.tar.gz
cpython-be86bdea734bc53b25698ff5961183cbb5352ffd.tar.bz2
Standardize whitespace in function calls.
Diffstat (limited to 'Lib/distutils/core.py')
-rw-r--r--Lib/distutils/core.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py
index 5dfe2db..2aab7c4 100644
--- a/Lib/distutils/core.py
+++ b/Lib/distutils/core.py
@@ -84,7 +84,7 @@ def setup (**attrs):
# Determine the distribution class -- either caller-supplied or
# our Distribution (see below).
- klass = attrs.get ('distclass')
+ klass = attrs.get('distclass')
if klass:
del attrs['distclass']
else:
@@ -98,7 +98,7 @@ def setup (**attrs):
# Create the Distribution instance, using the remaining arguments
# (ie. everything except distclass) to initialize it
try:
- _setup_distribution = dist = klass (attrs)
+ _setup_distribution = dist = klass(attrs)
except DistutilsSetupError, msg:
raise SystemExit, "error in setup script: %s" % msg
@@ -135,7 +135,7 @@ def setup (**attrs):
# And finally, run all the commands found on the command line.
if ok:
try:
- dist.run_commands ()
+ dist.run_commands()
except KeyboardInterrupt:
raise SystemExit, "interrupted"
except (IOError, os.error), exc: