mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-01-30 22:24:20 +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[^']+)'\).*?>([^<]+)<")
|
_gkPlayer = re.compile(r"popd\('(Rating[^']+)'\).*?>([^<]+)<")
|
||||||
_gkRating = re.compile(r": (\d+)[^:]+:<br>(\d+)[^,]+, (\d+)[^,]+, (\d+)")
|
_gkRating = re.compile(r": (\d+)[^:]+:<br>(\d+)[^,]+, (\d+)[^,]+, (\d+)")
|
||||||
_gkGameTitle = re.compile(r"<p><b>(.*?)\s*</b> \s*<span.*?>\(started")
|
_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):
|
def gameknotSnarfer(self, irc, msg, match):
|
||||||
r"http://(?:www\.)?gameknot.com/chess.pl\?bd=\d+(&r=\d+)?"
|
r"http://(?:www\.)?gameknot.com/chess.pl\?bd=\d+(&r=\d+)?"
|
||||||
#debug.printf('Got a GK URL from %s' % msg.prefix)
|
#debug.printf('Got a GK URL from %s' % msg.prefix)
|
||||||
@ -140,6 +140,7 @@ class Gameknot(callbacks.PrivmsgCommandAndRegexp):
|
|||||||
# Game is over.
|
# Game is over.
|
||||||
m = self._gkWon.search(s)
|
m = self._gkWon.search(s)
|
||||||
(winner, loser, reason) = m.groups()
|
(winner, loser, reason) = m.groups()
|
||||||
|
debug.printf((winner, loser, reason))
|
||||||
if winner == 'white':
|
if winner == 'white':
|
||||||
toMove = '%s won, %s %s.' % (wName, bName, reason)
|
toMove = '%s won, %s %s.' % (wName, bName, reason)
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user