Removed some debugging stuff that never should've been committed.

This commit is contained in:
Jeremy Fincher 2003-09-22 11:16:41 +00:00
parent 9092fb7b83
commit 41d3039c68

View File

@ -80,16 +80,12 @@ class Services(privmsgs.CapabilityCheckingPrivmsg):
irc.reply(msg, conf.replySuccess) irc.reply(msg, conf.replySuccess)
def do376(self, irc, msg): def do376(self, irc, msg):
debug.msg('Services.do376 called.', 'high')
if self.nickserv: if self.nickserv:
debug.msg('self.nickserv was true.', 'high')
identify = 'IDENTIFY %s' % self.password identify = 'IDENTIFY %s' % self.password
# It's important that this next statement is irc.sendMsg, not # It's important that this next statement is irc.sendMsg, not
# irc.queueMsg. We want this message to get through before any # irc.queueMsg. We want this message to get through before any
# JOIN messages also being sent on 376. # JOIN messages also being sent on 376.
debug.msg(`irc.fastqueue`, 'high')
irc.sendMsg(ircmsgs.privmsg(self.nickserv, identify)) irc.sendMsg(ircmsgs.privmsg(self.nickserv, identify))
debug.msg(`irc.fastqueue`, 'high')
do377 = do376 do377 = do376
_owned = re.compile('nick.*(?<!not)(?:registered|protected|owned)') _owned = re.compile('nick.*(?<!not)(?:registered|protected|owned)')