summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/bdist_wininst.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-09-16 15:56:32 (GMT)
committerGreg Ward <gward@python.net>2000-09-16 15:56:32 (GMT)
commit3bfc8c806862410458b60961a5c4cde997fe5c1c (patch)
treeebcc50aea2a9cce5d31283270f158cb6f2b10dfa /Lib/distutils/command/bdist_wininst.py
parent8099f0e5fc115d95d05098082d7afc77f22f98c6 (diff)
downloadcpython-3bfc8c806862410458b60961a5c4cde997fe5c1c.zip
cpython-3bfc8c806862410458b60961a5c4cde997fe5c1c.tar.gz
cpython-3bfc8c806862410458b60961a5c4cde997fe5c1c.tar.bz2
Renamed --keep-tree to --keep-temp.
Diffstat (limited to 'Lib/distutils/command/bdist_wininst.py')
-rw-r--r--Lib/distutils/command/bdist_wininst.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py
index 2e535d5..5030ef9 100644
--- a/Lib/distutils/command/bdist_wininst.py
+++ b/Lib/distutils/command/bdist_wininst.py
@@ -19,7 +19,7 @@ class bdist_wininst (Command):
user_options = [('bdist-dir=', 'd',
"temporary directory for creating the distribution"),
- ('keep-tree', 'k',
+ ('keep-temp', 'k',
"keep the pseudo-installation tree around after " +
"creating the distribution archive"),
('target-version=', 'v',
@@ -35,7 +35,7 @@ class bdist_wininst (Command):
def initialize_options (self):
self.bdist_dir = None
- self.keep_tree = 0
+ self.keep_temp = 0
self.no_target_compile = 0
self.no_target_optimize = 0
self.target_version = None
@@ -111,7 +111,7 @@ class bdist_wininst (Command):
root_dir=root_dir)
self.create_exe (arcname, fullname)
- if not self.keep_tree:
+ if not self.keep_temp:
remove_tree (self.bdist_dir, self.verbose, self.dry_run)
# run()