parameter wait in join_muc entfernt

This commit is contained in:
example 2021-10-18 20:52:05 +02:00
parent f937e421c9
commit 1a506f8d79

View file

@ -57,10 +57,10 @@ class IdleBot(slixmpp.ClientXMPP):
room -- The room to join.
'''
self.plugin['xep_0045'].join_muc(room,
self.nick,
self.nick) # ,
# If a room password is needed, use:
# password=the_room_password,
wait=True)
# wait=True)
logging.info('Joined room {}'.format(room))
self.room_roster[room] = []