Changed bareword to actual string.

This commit is contained in:
Jeremy Fincher 2003-03-26 10:15:30 +00:00
parent df45ce1195
commit 37ce2de476

View File

@ -219,7 +219,7 @@ class Moobot(callbacks.Privmsg):
if someone == 'me': if someone == 'me':
someone = msg.nick someone = msg.nick
elif someone in ('yourself', 'you', irc.nick): elif someone in ('yourself', 'you', irc.nick):
someone = himself someone = 'himself'
response = 'gives %s %s' % (someone, something) response = 'gives %s %s' % (someone, something)
irc.queueMsg(ircmsgs.action(ircutils.reply(msg), response)) irc.queueMsg(ircmsgs.action(ircutils.reply(msg), response))