From e43dbcf88298d2273c9cca2b3e5c226484686289 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Wed, 14 Feb 2007 09:28:29 +0000 Subject: [PATCH] New Irc Framework: fix bug in debug message causing failures --- lib/rbot/irc.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rbot/irc.rb b/lib/rbot/irc.rb index b8ca4593..a4bd725a 100644 --- a/lib/rbot/irc.rb +++ b/lib/rbot/irc.rb @@ -644,7 +644,7 @@ module Irc # def matches?(arg) cmp = arg.to_irc_netmask(:casemap => casemap) - debug "Matching #{self.fullform} against #{arg.fullform}" + debug "Matching #{self.fullform} against #{arg.inspect} (#{cmp.fullform})" [:nick, :user, :host].each { |component| us = self.send(component).irc_downcase(casemap) them = cmp.send(component).irc_downcase(casemap) -- 2.39.5