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.'))