summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/bdist_dumb.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/bdist_dumb.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/bdist_dumb.py')
-rw-r--r--Lib/distutils/command/bdist_dumb.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py
index 520098d..8dfc327 100644
--- a/Lib/distutils/command/bdist_dumb.py
+++ b/Lib/distutils/command/bdist_dumb.py
@@ -71,24 +71,24 @@ class bdist_dumb (Command):
def run (self):
- self.run_command ('build')
+ self.run_command('build')
install = self.reinitialize_command('install', reinit_subcommands=1)
install.root = self.bdist_dir
- self.announce ("installing to %s" % self.bdist_dir)
+ self.announce("installing to %s" % self.bdist_dir)
self.run_command('install')
# And make an archive relative to the root of the
# pseudo-installation tree.
archive_basename = "%s.%s" % (self.distribution.get_fullname(),
self.plat_name)
- self.make_archive (os.path.join(self.dist_dir, archive_basename),
- self.format,
- root_dir=self.bdist_dir)
+ self.make_archive(os.path.join(self.dist_dir, archive_basename),
+ self.format,
+ root_dir=self.bdist_dir)
if not self.keep_temp:
- remove_tree (self.bdist_dir, self.verbose, self.dry_run)
+ remove_tree(self.bdist_dir, self.verbose, self.dry_run)
# run()