From 37ce2de476794892d7f12bacf57ef6c648cc5e12 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 26 Mar 2003 10:15:30 +0000 Subject: [PATCH] Changed bareword to actual string. --- plugins/Moobot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Moobot.py b/plugins/Moobot.py index 21cbf73d7..5e2aa3919 100644 --- a/plugins/Moobot.py +++ b/plugins/Moobot.py @@ -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))