Make sure reply prefixes the nick.

This commit is contained in:
Jeremy Fincher 2004-12-17 20:08:18 +00:00
parent 20924ed87e
commit f1b53073fb
1 changed files with 3 additions and 1 deletions

View File

@ -48,6 +48,8 @@ import supybot.ircutils as ircutils
import supybot.callbacks as callbacks
class Utilities(callbacks.Privmsg):
# Yes, I really do mean "requires no arguments" below. "takes no
# arguments" would probably lead people to think it was a useless command.
def ignore(self, irc, msg, args):
"""requires no arguments
@ -61,7 +63,7 @@ class Utilities(callbacks.Privmsg):
Replies with <text>. Equivalent to the alias, 'echo $nick: $1'.
"""
irc.reply(text)
irc.reply(text, prefixName=True)
reply = wrap(reply, ['text'])
def success(self, irc, msg, args, text):