diff options
| author | Greg Ward <gward@python.net> | 2000-05-07 15:32:13 +0000 |
|---|---|---|
| committer | Greg Ward <gward@python.net> | 2000-05-07 15:32:13 +0000 |
| commit | f60583c2d16f6fce44276326164967fcb0ccd965 (patch) | |
| tree | ac5a474ad4dec1d380fb2adfe0f65216914c7fc1 /command/bdist.py | |
| parent | f1d400d10a1f601cc70a56c403a039bc3e9661b1 (diff) | |
| download | python-setuptools-git-f60583c2d16f6fce44276326164967fcb0ccd965.tar.gz | |
Don't use 'set_option()' or 'get_option()' method -- direct attribute access,
or getattr/setattr, is all that's needed.
Diffstat (limited to 'command/bdist.py')
| -rw-r--r-- | command/bdist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/command/bdist.py b/command/bdist.py index cde8dd63..01b4e162 100644 --- a/command/bdist.py +++ b/command/bdist.py @@ -64,7 +64,7 @@ class bdist (Command): "invalid archive format '%s'" % self.format sub_cmd = self.find_peer (cmd_name) - sub_cmd.set_option ('format', self.format) + sub_cmd.format = self.format self.run_peer (cmd_name) # run() |
