Commit 8bcda91b authored by Greg Ward's avatar Greg Ward

Renamed --keep-tree option to --keep-temp.

parent f09c52fb
...@@ -25,7 +25,7 @@ class bdist_dumb (Command): ...@@ -25,7 +25,7 @@ class bdist_dumb (Command):
"(default: %s)" % get_platform()), "(default: %s)" % get_platform()),
('format=', 'f', ('format=', 'f',
"archive format to create (tar, ztar, gztar, zip)"), "archive format to create (tar, ztar, gztar, zip)"),
('keep-tree', 'k', ('keep-temp', 'k',
"keep the pseudo-installation tree around after " + "keep the pseudo-installation tree around after " +
"creating the distribution archive"), "creating the distribution archive"),
('dist-dir=', 'd', ('dist-dir=', 'd',
...@@ -40,7 +40,7 @@ class bdist_dumb (Command): ...@@ -40,7 +40,7 @@ class bdist_dumb (Command):
self.bdist_dir = None self.bdist_dir = None
self.plat_name = None self.plat_name = None
self.format = None self.format = None
self.keep_tree = 0 self.keep_temp = 0
self.dist_dir = None self.dist_dir = None
# initialize_options() # initialize_options()
...@@ -85,7 +85,7 @@ class bdist_dumb (Command): ...@@ -85,7 +85,7 @@ class bdist_dumb (Command):
self.format, self.format,
root_dir=self.bdist_dir) 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) remove_tree (self.bdist_dir, self.verbose, self.dry_run)
# run() # run()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment