From 72f9019300be562fc7b42327311d741a9e9ec1fb Mon Sep 17 00:00:00 2001 From: James Lu Date: Mon, 8 Aug 2016 23:40:24 -0700 Subject: [PATCH] clientbot: remove self.irc.users print --- protocols/clientbot.py | 1 - 1 file changed, 1 deletion(-) diff --git a/protocols/clientbot.py b/protocols/clientbot.py index a435538..7a85f1a 100644 --- a/protocols/clientbot.py +++ b/protocols/clientbot.py @@ -88,7 +88,6 @@ class ClientbotWrapperProtocol(Protocol): log.debug('(%s) spawnClient stub called, saving nick %s as PUID %s', self.irc.name, nick, uid) u = self.irc.users[uid] = IrcUser(nick, ts, uid, ident=ident, host=host, realname=realname, manipulatable=manipulatable, realhost=realhost, ip=ip) - log.debug('(%s) self.irc.users: %s', self.irc.name, self.irc.users) self.irc.servers[server].users.add(uid) self.irc.applyModes(uid, modes)