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 | 3f5a39b346e9ed623bba60da5b773e238721ef71 (patch) | |
| tree | 9558386f6256696393ca78886210baa8973ecc1b /command/bdist_dumb.py | |
| parent | 138ae247bb47e34672d909a46fa998a4b86b90f6 (diff) | |
| download | python-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.py | 2 |
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) |
