summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Nichols <tmnichols@gmail.com>2010-07-12 12:09:34 -0400
committerTom Nichols <tmnichols@gmail.com>2010-07-12 12:09:34 -0400
commit55f83e8ab03d1f1824a5ed286d612c155112d318 (patch)
treeea087b872f0b24a934c32baeb927cada15a128e8
parentd43fba3c8f88fbda072cfefa0742fee9b51cd6ef (diff)
downloadslixmpp-55f83e8ab03d1f1824a5ed286d612c155112d318.tar.gz
slixmpp-55f83e8ab03d1f1824a5ed286d612c155112d318.tar.bz2
slixmpp-55f83e8ab03d1f1824a5ed286d612c155112d318.tar.xz
slixmpp-55f83e8ab03d1f1824a5ed286d612c155112d318.zip
fixed variable name
-rw-r--r--sleekxmpp/xmlstream/statemachine.py2
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