diff --git a/src/privmsgs.py b/src/privmsgs.py index b3b8c5c69..1cc3b83fd 100644 --- a/src/privmsgs.py +++ b/src/privmsgs.py @@ -310,6 +310,11 @@ class OwnerCommands(CapabilityCheckingPrivmsg): """takes no arguments""" irc.reply(msg, str(os.system('cvs up'))) + def say(self, irc, msg, args): + """ """ + (channel, text) = getArgs(args, needed=2) + irc.queueMsg(ircmsgs.privmsg(channel, text)) + standardPrivmsgModules = [OwnerCommands]