diff options
author | Greg Ward <gward@python.net> | 2000-09-25 01:51:01 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-09-25 01:51:01 (GMT) |
commit | af64aed5cfb23dc9af9475a1d810ed9f440b00bb (patch) | |
tree | d76a9160dd39dbd70e83cdade4ce6b18372893f0 /Lib/distutils/command/sdist.py | |
parent | 99b032eaf24e1887f6451eceea7f1e24ced05a0f (diff) | |
download | cpython-af64aed5cfb23dc9af9475a1d810ed9f440b00bb.zip cpython-af64aed5cfb23dc9af9475a1d810ed9f440b00bb.tar.gz cpython-af64aed5cfb23dc9af9475a1d810ed9f440b00bb.tar.bz2 |
Renamed '--keep-tree' option to '--keep-temp', for consistency
with the bdist_* commands.
Diffstat (limited to 'Lib/distutils/command/sdist.py')
-rw-r--r-- | Lib/distutils/command/sdist.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index ec443a3..adaf492 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -59,7 +59,7 @@ class sdist (Command): "forcibly regenerate the manifest and carry on as usual"), ('formats=', None, "formats for source distribution (comma-separated list)"), - ('keep-tree', 'k', + ('keep-temp', 'k', "keep the distribution tree around after creating " + "archive file(s)"), ('dist-dir=', 'd', @@ -69,7 +69,7 @@ class sdist (Command): boolean_options = ['use-defaults', 'prune', 'manifest-only', 'force-manifest', - 'keep-tree'] + 'keep-temp'] help_options = [ ('help-formats', None, @@ -97,7 +97,7 @@ class sdist (Command): self.force_manifest = 0 self.formats = None - self.keep_tree = 0 + self.keep_temp = 0 self.dist_dir = None self.archive_files = None @@ -357,7 +357,7 @@ class sdist (Command): by 'read_template()', but really don't belong there: * the build tree (typically "build") * the release tree itself (only an issue if we ran "sdist" - previously with --keep-tree, or it aborted) + previously with --keep-temp, or it aborted) * any RCS or CVS directories """ build = self.get_finalized_command('build') @@ -447,7 +447,7 @@ class sdist (Command): tree with 'make_release_tree()'; then, we create all required archive files (according to 'self.formats') from the release tree. Finally, we clean up by blowing away the release tree (unless - 'self.keep_tree' is true). The list of archive files created is + 'self.keep_temp' is true). The list of archive files created is stored so it can be retrieved later by 'get_archive_files()'. """ # Don't warn about missing meta-data here -- should be (and is!) @@ -463,7 +463,7 @@ class sdist (Command): self.archive_files = archive_files - if not self.keep_tree: + if not self.keep_temp: dir_util.remove_tree (base_dir, self.verbose, self.dry_run) def get_archive_files (self): |