You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Raw data is loaded, but the error below is thrown by match.group("ident") in pokerstars.py. ..and there is this comment there...
self.ident = match.group("ident")
# We cannot use the knowledege of the game type to pick between the blind
# and cash blind captures because a cash game play money blind looks exactly
# like a tournament blind
/home/johnpc/card-parser/py/bin/python3 /home/johnpc/card-parser/py/parse.py
Traceback (most recent call last):
File "/home/johnpc/card-parser/py/parse.py", line 3, in <module>
hh.parse()
File "/home/johnpc/card-parser/py/lib/python3.6/site-packages/poker/room/pokerstars.py", line 174, in parse
self.parse_header()
File "/home/johnpc/card-parser/py/lib/python3.6/site-packages/poker/room/pokerstars.py", line 129, in parse_header
self.ident = match.group("ident")
AttributeError: 'NoneType' object has no attribute 'group'
I'm also having trouble parsing Pokerstars hand history.
I used the setup from https://poker.readthedocs.io/en/latest/handhistory.html
Raw data is loaded, but the error below is thrown by
match.group("ident")
in pokerstars.py. ..and there is this comment there...Originally posted by @Johnpc123 in #37 (comment)
The text was updated successfully, but these errors were encountered: