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").
This commit is contained in:
Greg Ward 2000-05-27 17:27:23 +00:00
parent 25bfd0e8d0
commit 4fb29e55f8
11 changed files with 59 additions and 78 deletions

View file

@ -681,7 +681,7 @@ class Distribution:
self.announce ("running " + command)
cmd_obj = self.get_command_obj (command)
cmd_obj.ensure_ready ()
cmd_obj.ensure_finalized ()
cmd_obj.run ()
self.have_run[command] = 1