PokerStars: Fix tablename regex to allow a #
Occasionally Stars throws up a cash table that looks like PokerStars Game #22920951206: Triple Draw 2-7 Lowball Limit ($0.10/$0.20) - 2008/12/14 17:44:00 ET Table 'T #252691988' 6-max Seat #2 is the button a # was previously excluded from the regex.
This commit is contained in:
parent
12a9cd2e3e
commit
33455cb1ac
|
@ -69,7 +69,7 @@ class PokerStars(HandHistoryConverter):
|
||||||
re.MULTILINE|re.VERBOSE)
|
re.MULTILINE|re.VERBOSE)
|
||||||
|
|
||||||
re_HandInfo = re.compile("""
|
re_HandInfo = re.compile("""
|
||||||
^Table\s\'(?P<TABLE>[-\ a-zA-Z\d]+)\'\s
|
^Table\s\'(?P<TABLE>[-\ \#a-zA-Z\d]+)\'\s
|
||||||
((?P<MAX>\d+)-max\s)?
|
((?P<MAX>\d+)-max\s)?
|
||||||
(?P<PLAY>\(Play\sMoney\)\s)?
|
(?P<PLAY>\(Play\sMoney\)\s)?
|
||||||
(Seat\s\#(?P<BUTTON>\d+)\sis\sthe\sbutton)?""",
|
(Seat\s\#(?P<BUTTON>\d+)\sis\sthe\sbutton)?""",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user