summaryrefslogtreecommitdiff
path: root/command/bdist_dumb.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-05-23 01:55:01 +0000
committerGreg Ward <gward@python.net>2000-05-23 01:55:01 +0000
commit3f5a39b346e9ed623bba60da5b773e238721ef71 (patch)
tree9558386f6256696393ca78886210baa8973ecc1b /command/bdist_dumb.py
parent138ae247bb47e34672d909a46fa998a4b86b90f6 (diff)
downloadpython-setuptools-git-3f5a39b346e9ed623bba60da5b773e238721ef71.tar.gz
Use 'get_command_obj()' instead of 'find_command_obj()'.
Diffstat (limited to 'command/bdist_dumb.py')
-rw-r--r--command/bdist_dumb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/command/bdist_dumb.py b/command/bdist_dumb.py
index 2de2befc..eaa19273 100644
--- a/command/bdist_dumb.py
+++ b/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)