*** empty log message ***

This commit is contained in:
Jesse Schell 2001-10-10 21:24:15 +00:00
parent 3f49b53c7a
commit cc92f692b8
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@ class FSM(DirectObject):
str = ("FSM " + self.getName() + ' not in any state')
return str
def enterInitialState(self):
self.__enter(self.__initialState)
def enterInitialState(self, argList=[]):
self.__enter(self.__initialState, argList)
return None
# Jesse decided that simpler was better with the __str__ function