Mercurial > xib
comparison muc.py @ 257:1a8401d6bc93
(muc) removed "participants" attribute since it isn't used
Signed-off-by: Charly COSTE <changaco@changaco.net>
author | Charly COSTE <changaco@changaco.net> |
---|---|
date | Sat, 13 Mar 2010 14:40:32 +0100 |
parents | f14b32e7fdb5 |
children | 3b318108e9e0 |
comparison
equal
deleted
inserted
replaced
256:f14b32e7fdb5 | 257:1a8401d6bc93 |
---|---|
33 class NotConnected(Exception): pass | 33 class NotConnected(Exception): pass |
34 | 34 |
35 def __init__(self, room_jid): | 35 def __init__(self, room_jid): |
36 self.room_jid = room_jid | 36 self.room_jid = room_jid |
37 self.connected = False | 37 self.connected = False |
38 self.participants = {} | |
39 | 38 |
40 | 39 |
41 def _join(self, callback=None): | 40 def _join(self, callback=None): |
42 self.callback = callback | 41 self.callback = callback |
43 self.xmpp_c.RegisterHandler('presence', self._xmpp_presence_handler) | 42 self.xmpp_c.RegisterHandler('presence', self._xmpp_presence_handler) |