mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Use 'get_command_obj()' instead of 'find_command_obj()'.
This commit is contained in:
parent
3c67b1dd08
commit
5edcd90f8c
2 changed files with 4 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue