diff options
Diffstat (limited to 'src/multiuserchat.py')
-rw-r--r-- | src/multiuserchat.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/multiuserchat.py b/src/multiuserchat.py index 5800e7f9..311bce87 100644 --- a/src/multiuserchat.py +++ b/src/multiuserchat.py @@ -22,9 +22,6 @@ import sleekxmpp from xml.etree import cElementTree as ET - -from common import debug - def send_private_message(xmpp, jid, line): """ Send a private message @@ -54,7 +51,6 @@ def change_show(xmpp, jid, own_nick, show, status): pres['type'] = show if status: pres['status'] = status - debug('Change presence: %s\n' % (pres)) pres.send() def change_subject(xmpp, jid, subject): |