parameter wait in join_muc entfernt
This commit is contained in:
parent
f937e421c9
commit
1a506f8d79
1 changed files with 4 additions and 4 deletions
|
@ -57,10 +57,10 @@ class IdleBot(slixmpp.ClientXMPP):
|
||||||
room -- The room to join.
|
room -- The room to join.
|
||||||
'''
|
'''
|
||||||
self.plugin['xep_0045'].join_muc(room,
|
self.plugin['xep_0045'].join_muc(room,
|
||||||
self.nick,
|
self.nick) # ,
|
||||||
# If a room password is needed, use:
|
# If a room password is needed, use:
|
||||||
# password=the_room_password,
|
# password=the_room_password,
|
||||||
wait=True)
|
# wait=True)
|
||||||
logging.info('Joined room {}'.format(room))
|
logging.info('Joined room {}'.format(room))
|
||||||
self.room_roster[room] = []
|
self.room_roster[room] = []
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue