mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-29 21:54:22 +01:00
Stupid regexp error.
This commit is contained in:
parent
a50e81d23e
commit
6025ecac05
@ -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> \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:
|
||||
|
Loading…
Reference in New Issue
Block a user