diff --git a/ptgbot/bot.py b/ptgbot/bot.py index 55475ee..5b1a311 100644 --- a/ptgbot/bot.py +++ b/ptgbot/bot.py @@ -139,7 +139,6 @@ class PTGBot(irc.bot.SingleServerIRCBot): self.send(chan, "%s: unknown directive '%s'" % (nick, adverb)) self.usage(chan) return - self.send(chan, "%s: ack" % (nick,)) if msg.startswith('~'): if not self.channels[chan].is_oper(nick): @@ -160,7 +159,6 @@ class PTGBot(irc.bot.SingleServerIRCBot): else: self.send(chan, "%s: unknown command '%s'" % (nick, command)) return - self.send(chan, "%s: done" % (nick,)) def send(self, channel, msg): self.connection.privmsg(channel, msg)