Added cvsup command

This commit is contained in:
Jeremy Fincher 2003-03-27 11:09:17 +00:00
parent 15e26578fb
commit b95095df38

View File

@ -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]