diff options
| author | Greg Ward <gward@python.net> | 2000-05-23 01:55:01 +0000 | 
|---|---|---|
| committer | Greg Ward <gward@python.net> | 2000-05-23 01:55:01 +0000 | 
| commit | 5edcd90f8c7452b58bf8a070a724e588b1a94807 (patch) | |
| tree | a9104257baf50fad60f8eada6dabf0a21dc6bd26 /Lib/distutils/command | |
| parent | 3c67b1dd08b80a6052d4c097ca5d1b399f0dd941 (diff) | |
| download | cpython-git-5edcd90f8c7452b58bf8a070a724e588b1a94807.tar.gz | |
Use 'get_command_obj()' instead of 'find_command_obj()'.
Diffstat (limited to 'Lib/distutils/command')
| -rw-r--r-- | Lib/distutils/command/bdist_dumb.py | 2 | 
1 files changed, 1 insertions, 1 deletions
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)  | 
