From b9f7af885c10edcea74ddadbe0dce5368a00a679 Mon Sep 17 00:00:00 2001 From: Nathan Fritz Date: Tue, 1 Sep 2009 17:24:52 +0000 Subject: * fixed some python3 transition bugs * added status options to muc joining --- sleekxmpp/xmlstream/statemachine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sleekxmpp/xmlstream') diff --git a/sleekxmpp/xmlstream/statemachine.py b/sleekxmpp/xmlstream/statemachine.py index 66aa358f..e9e270c8 100644 --- a/sleekxmpp/xmlstream/statemachine.py +++ b/sleekxmpp/xmlstream/statemachine.py @@ -25,7 +25,7 @@ class StateMachine(object): if gstate in self.__state or gstate in self.__group: raise IndexError("The key or group '%s' is already in the StateMachine." % gstate) for state in groups[gstate]: - if self.__state.has_key(state): + if state in self.__state: raise IndexError("The group %s contains a key %s which is not set in the StateMachine." % (gstate, state)) self.__group[gstate] = groups[gstate] -- cgit v1.2.3