fixed typo

This commit is contained in:
Greg Wiatroski 2004-08-25 22:29:36 +00:00
parent b966a79427
commit fbbec24110
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ class DirectScrolledListItem(DirectButton):
self.nextCommand = kw.get("command")
del kw["command"]
if kw.has_key("extraArgs"):
self.nextCommnadExtraArgs = kw.get("extraArgs")
self.nextCommandExtraArgs = kw.get("extraArgs")
del kw["extraArgs"]
optiondefs = (
('parent', self.parent, None),
@ -33,7 +33,7 @@ class DirectScrolledListItem(DirectButton):
def select(self):
assert self.notify.debugStateCall(self)
apply(self.nextCommand, self.nextCommnadExtraArgs)
apply(self.nextCommand, self.nextCommandExtraArgs)
self.parent.selectListItem(self)