From 25aca81c9a040fe0240f730b5c6bb7b7b11972e8 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 3 Sep 2003 09:57:30 +0000 Subject: [PATCH] Added warning about blocking in the morehelp for cvsup. --- src/OwnerCommands.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/OwnerCommands.py b/src/OwnerCommands.py index 66606003a..a6fc6b666 100644 --- a/src/OwnerCommands.py +++ b/src/OwnerCommands.py @@ -277,7 +277,10 @@ class OwnerCommands(privmsgs.CapabilityCheckingPrivmsg): def cvsup(self, irc, msg, args): """takes no arguments - Returns the return code of 'cvs up' + Returns the return code of 'cvs up'. Do note that this command blocks + the entire bot until the cvs up finishes. If you're using ext + authentication, you'll want to type the password in on the terminal + the bot is running on, or he'll just freeze. """ irc.reply(msg, str(os.system('cvs up')))