diff --git a/src/privmsgs.py b/src/privmsgs.py index 5c5367557..d023c6fce 100644 --- a/src/privmsgs.py +++ b/src/privmsgs.py @@ -310,6 +310,10 @@ class OwnerCommands(CapabilityCheckingPrivmsg): else: irc.error(msg, 'There was no callback %s' % name) + def cvsup(self, irc, msg, args): + """takes no arguments""" + irc.reply(msg, str(os.system('cvs up'))) + standardPrivmsgModules = [OwnerCommands]