Changed bareword to actual string.

This commit is contained in:
Jeremy Fincher 2003-03-26 10:15:30 +00:00
parent df45ce1195
commit 37ce2de476
1 changed files with 1 additions and 1 deletions

View File

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