summaryrefslogtreecommitdiff
path: root/command/bdist.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-05-07 15:32:13 +0000
committerGreg Ward <gward@python.net>2000-05-07 15:32:13 +0000
commitf60583c2d16f6fce44276326164967fcb0ccd965 (patch)
treeac5a474ad4dec1d380fb2adfe0f65216914c7fc1 /command/bdist.py
parentf1d400d10a1f601cc70a56c403a039bc3e9661b1 (diff)
downloadpython-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.py2
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()