From 5edcd90f8c7452b58bf8a070a724e588b1a94807 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Tue, 23 May 2000 01:55:01 +0000 Subject: Use 'get_command_obj()' instead of 'find_command_obj()'. --- Lib/distutils/command/bdist_dumb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/distutils/command/bdist_dumb.py') diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py index 2de2befc14..eaa192732b 100644 --- a/Lib/distutils/command/bdist_dumb.py +++ b/Lib/distutils/command/bdist_dumb.py @@ -63,7 +63,7 @@ class bdist_dumb (Command): # command object that has *not* been finalized, so we can set # options on it! (The option we set, 'root', is so that we can do # a proper "fake install" using this install command object.) - install = self.distribution.find_command_obj('install') + install = self.distribution.get_command_obj('install') install.root = self.bdist_dir self.announce ("installing to %s" % self.bdist_dir) -- cgit v1.2.1