Don't replySuccess from Scheduler.repeat.

This commit is contained in:
Jeremy Fincher 2004-01-04 15:43:49 +00:00
parent f1a68ff16f
commit 17c6e69d2f
1 changed files with 2 additions and 1 deletions

View File

@ -117,7 +117,8 @@ class Scheduler(callbacks.Privmsg):
return
f = self._makeCommandFunction(irc, msg, command)
id = schedule.addPeriodicEvent(f, seconds, name)
irc.reply(msg, conf.replySuccess)
# We don't reply because the command runs immediately.
# irc.reply(msg, conf.replySuccess)
Class = Scheduler