From 4ee9dc7217b412686d649edfb71ec3da130173c1 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 13 Mar 2003 07:53:13 +0000 Subject: [PATCH] Fixed gameknot.com URL snarfer formatting (double colons) --- plugins/Forums.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/Forums.py b/plugins/Forums.py index d4ccbafab..9f2dc5a06 100644 --- a/plugins/Forums.py +++ b/plugins/Forums.py @@ -41,8 +41,6 @@ class Forums(callbacks.PrivmsgRegexp): ((wRating, wName), (bRating, bName)) = self.gkPlayer.findall(s) wRating = wRating.replace('
', ' ') bRating = bRating.replace('
', ' ') - wRating = wRating.replace('Rating', 'Rating:') - bRating = bRating.replace('Rating', 'Rating:') irc.queueMsg(ircmsgs.privmsg(msg.args[0], '%s (%s) vs. %s (%s)' % (wName, wRating, bName, bRating)))