*** empty log message ***
This commit is contained in:
parent
3f49b53c7a
commit
cc92f692b8
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue