diff options
Diffstat (limited to 'src/multiuserchat.py')
-rw-r--r-- | src/multiuserchat.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/multiuserchat.py b/src/multiuserchat.py index ac910837..f537c2c1 100644 --- a/src/multiuserchat.py +++ b/src/multiuserchat.py @@ -11,8 +11,6 @@ Add some facilities that are not available on the XEP_0045 sleek plugin """ -import sleekxmpp - from xml.etree import cElementTree as ET import logging @@ -68,7 +66,7 @@ def leave_groupchat(xmpp, jid, own_nick, msg): try: xmpp.plugin['xep_0045'].leaveMUC(jid, own_nick, msg) except KeyError: - log.debug("WARNING: in muc.leave_groupchat: could not leave the room") + log.debug("muc.leave_groupchat: could not leave the room %s" % jid) def set_user_role(xmpp, jid, nick, reason, role): """ |