fixed variable name

This commit is contained in:
Tom Nichols 2010-07-12 12:09:34 -04:00
parent d43fba3c8f
commit 55f83e8ab0

View file

@ -197,7 +197,7 @@ class StateMachine(object):
def reset(self):
# TODO need to lock before calling this?
self.transition(self.__current_state, self._default_state)
self.transition(self.__current_state, self.__default_state)
def _set_state(self, state): #unsynchronized, only call internally after lock is acquired