Stupid regexp error.

This commit is contained in:
Jeremy Fincher 2003-08-18 06:43:26 +00:00
parent a50e81d23e
commit 6025ecac05
1 changed files with 2 additions and 1 deletions

View File

@ -115,7 +115,7 @@ class Gameknot(callbacks.PrivmsgCommandAndRegexp):
_gkPlayer = re.compile(r"popd\('(Rating[^']+)'\).*?>([^<]+)<")
_gkRating = re.compile(r": (\d+)[^:]+:<br>(\d+)[^,]+, (\d+)[^,]+, (\d+)")
_gkGameTitle = re.compile(r"<p><b>(.*?)\s*</b>&nbsp;\s*<span.*?>\(started")
_gkWon = re.compile(r'(\S+)\s+won\s+\((\S+)\s+(\S+)\)')
_gkWon = re.compile(r'>(\S+)\s+won\s+\((\S+)\s+(\S+)\)')
def gameknotSnarfer(self, irc, msg, match):
r"http://(?:www\.)?gameknot.com/chess.pl\?bd=\d+(&r=\d+)?"
#debug.printf('Got a GK URL from %s' % msg.prefix)
@ -140,6 +140,7 @@ class Gameknot(callbacks.PrivmsgCommandAndRegexp):
# Game is over.
m = self._gkWon.search(s)
(winner, loser, reason) = m.groups()
debug.printf((winner, loser, reason))
if winner == 'white':
toMove = '%s won, %s %s.' % (wName, bName, reason)
else: