diff options
author | Greg Ward <gward@python.net> | 2000-05-27 17:27:23 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-05-27 17:27:23 (GMT) |
commit | 4fb29e55f8f53e60b36eae3fbe56e9666aacc9c5 (patch) | |
tree | c117c1d3a5eb065b8bcd0144f8c3a26a871365ff /Lib/distutils/command/bdist.py | |
parent | 25bfd0e8d00d2e601f38f163c9cb6f7c862abd2f (diff) | |
download | cpython-4fb29e55f8f53e60b36eae3fbe56e9666aacc9c5.zip cpython-4fb29e55f8f53e60b36eae3fbe56e9666aacc9c5.tar.gz cpython-4fb29e55f8f53e60b36eae3fbe56e9666aacc9c5.tar.bz2 |
Some far-reaching naming changes:
* Command method 'find_peer()' -> 'get_finalized_command()'
* Command method 'run_peer()' -> 'run_command()'
Also deleted the 'get_command_option()' method from Command, and
fixed the one place where it was used (in "bdist_dumb").
Diffstat (limited to 'Lib/distutils/command/bdist.py')
-rw-r--r-- | Lib/distutils/command/bdist.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py index 892712e..df4e3a0 100644 --- a/Lib/distutils/command/bdist.py +++ b/Lib/distutils/command/bdist.py @@ -53,7 +53,7 @@ class bdist (Command): # temporary directories (eg. we'll probably have # "build/bdist.<plat>/dumb", "build/bdist.<plat>/rpm", etc.) if self.bdist_base is None: - build_base = self.find_peer('build').build_base + build_base = self.get_finalized_command('build').build_base plat = get_platform() self.bdist_base = os.path.join (build_base, 'bdist.' + plat) @@ -79,9 +79,9 @@ class bdist (Command): "invalid archive format '%s'" % self.format if cmd_name not in self.no_format_option: - sub_cmd = self.find_peer (cmd_name) + sub_cmd = self.get_finalized_command (cmd_name) sub_cmd.format = self.format - self.run_peer (cmd_name) + self.run_command (cmd_name) # run() |