diff options
Diffstat (limited to 'sleekxmpp/xmlstream')
-rw-r--r-- | sleekxmpp/xmlstream/statemachine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/xmlstream/statemachine.py b/sleekxmpp/xmlstream/statemachine.py index 8939397b..8e05809e 100644 --- a/sleekxmpp/xmlstream/statemachine.py +++ b/sleekxmpp/xmlstream/statemachine.py @@ -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 |