summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/bdist_dumb.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-09-16 15:53:41 (GMT)
committerGreg Ward <gward@python.net>2000-09-16 15:53:41 (GMT)
commit842903649631cf7ad0569ecae182e54776201fb4 (patch)
treeb0f7ca03c64078e6028f106c3686c49c7d27d13a /Lib/distutils/command/bdist_dumb.py
parent24511d2a6ed7d79bfd8f67b67c7b4fb7449b19f1 (diff)
downloadcpython-842903649631cf7ad0569ecae182e54776201fb4.zip
cpython-842903649631cf7ad0569ecae182e54776201fb4.tar.gz
cpython-842903649631cf7ad0569ecae182e54776201fb4.tar.bz2
Renamed --keep-tree option to --keep-temp.
Diffstat (limited to 'Lib/distutils/command/bdist_dumb.py')
-rw-r--r--Lib/distutils/command/bdist_dumb.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py
index afeb4ad..1fdbf42 100644
--- a/Lib/distutils/command/bdist_dumb.py
+++ b/Lib/distutils/command/bdist_dumb.py
@@ -25,7 +25,7 @@ class bdist_dumb (Command):
"(default: %s)" % get_platform()),
('format=', 'f',
"archive format to create (tar, ztar, gztar, zip)"),
- ('keep-tree', 'k',
+ ('keep-temp', 'k',
"keep the pseudo-installation tree around after " +
"creating the distribution archive"),
('dist-dir=', 'd',
@@ -40,7 +40,7 @@ class bdist_dumb (Command):
self.bdist_dir = None
self.plat_name = None
self.format = None
- self.keep_tree = 0
+ self.keep_temp = 0
self.dist_dir = None
# initialize_options()
@@ -85,7 +85,7 @@ class bdist_dumb (Command):
self.format,
root_dir=self.bdist_dir)
- if not self.keep_tree:
+ if not self.keep_temp:
remove_tree (self.bdist_dir, self.verbose, self.dry_run)
# run()