From 4fb29e55f8f53e60b36eae3fbe56e9666aacc9c5 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Sat, 27 May 2000 17:27:23 +0000 Subject: 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"). --- Lib/distutils/command/install_scripts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/distutils/command/install_scripts.py') diff --git a/Lib/distutils/command/install_scripts.py b/Lib/distutils/command/install_scripts.py index 5888cafd445..3eb3963c958 100644 --- a/Lib/distutils/command/install_scripts.py +++ b/Lib/distutils/command/install_scripts.py @@ -35,7 +35,7 @@ class install_scripts (Command): def run (self): if not self.skip_build: - self.run_peer('build_scripts') + self.run_command('build_scripts') self.outfiles = self.copy_tree (self.build_dir, self.install_dir) if os.name == 'posix': # Set the executable bits (owner, group, and world) on -- cgit v1.2.3