From b497acbc43b6b98fdd5223b5fc0290223595c742 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Sat, 13 Sep 2003 22:32:32 +0000 Subject: [PATCH] Removed the URL from the snarfer output. --- plugins/Gameknot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Gameknot.py b/plugins/Gameknot.py index 0006996cf..e3d40d63c 100644 --- a/plugins/Gameknot.py +++ b/plugins/Gameknot.py @@ -185,8 +185,8 @@ class Gameknot(callbacks.PrivmsgCommandAndRegexp): wStats = '%s; W-%s, L-%s, D-%s' % (wRating, wWins, wLosses, wDraws) bStats = '%s; W-%s, L-%s, D-%s' % (bRating, bWins, bLosses, bDraws) irc.queueMsg(callbacks.reply(msg, - '%s: %s (%s) vs. %s (%s); %s <%s>' % ( - gameTitle, wName, wStats, bName, bStats, toMove, url))) + '%s: %s (%s) vs. %s (%s); %s' % ( + gameTitle, wName, wStats, bName, bStats, toMove))) except ValueError: irc.queueMsg(callbacks.reply(msg, 'That doesn\'t appear to be a proper Gameknot game.'))