From 4da127906dd6323b12a4ed588a0916eb837417e6 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 13 Sep 2004 03:18:35 +0000 Subject: [PATCH] Fixed CTCP FINGER. --- plugins/Ctcp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Ctcp.py b/plugins/Ctcp.py index cf46bbd09..3dacd35f0 100644 --- a/plugins/Ctcp.py +++ b/plugins/Ctcp.py @@ -119,7 +119,7 @@ class Ctcp(callbacks.PrivmsgRegexp): def finger(self, irc, msg, match): "\x01FINGER\x01" self.log.info('Received CTCP FINGER from %s' % msg.prefix) - irc._reply(irc, msg, 'Supybot, the best Python IRC bot in existence!') + self._reply(irc, msg, 'Supybot, the best Python IRC bot in existence!') def source(self, irc, msg, match): "\x01SOURCE\x01"