diff options
author | Tom Nichols <tmnichols@gmail.com> | 2010-07-12 12:09:34 -0400 |
---|---|---|
committer | Tom Nichols <tmnichols@gmail.com> | 2010-07-12 12:09:34 -0400 |
commit | 55f83e8ab03d1f1824a5ed286d612c155112d318 (patch) | |
tree | ea087b872f0b24a934c32baeb927cada15a128e8 /sleekxmpp/xmlstream | |
parent | d43fba3c8f88fbda072cfefa0742fee9b51cd6ef (diff) | |
download | slixmpp-55f83e8ab03d1f1824a5ed286d612c155112d318.tar.gz slixmpp-55f83e8ab03d1f1824a5ed286d612c155112d318.tar.bz2 slixmpp-55f83e8ab03d1f1824a5ed286d612c155112d318.tar.xz slixmpp-55f83e8ab03d1f1824a5ed286d612c155112d318.zip |
fixed variable name
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 |