diff --git a/pyfpdb/PartyPokerToFpdb.py b/pyfpdb/PartyPokerToFpdb.py index a96308c0..218b9e7f 100755 --- a/pyfpdb/PartyPokerToFpdb.py +++ b/pyfpdb/PartyPokerToFpdb.py @@ -52,7 +52,7 @@ class PartyPoker(HandHistoryConverter): re_GameInfoRing = re.compile(""" (?P\$|)\s*(?P[.,0-9]+)([.,0-9/$]+)?\s*(?:USD)?\s* (?P(NL|PL|))\s* - (?P(Texas\ Hold\'em|Omaha)) + (?P(Texas\ Hold\'em|Omaha|7 Card Stud Hi-Lo)) \s*\-\s* (?P.+) """, re.VERBOSE) @@ -202,6 +202,7 @@ class PartyPoker(HandHistoryConverter): games = { # base, category "Texas Hold'em" : ('hold','holdem'), 'Omaha' : ('hold','omahahi'), + "7 Card Stud Hi-Lo" : ('stud','studhi'), } currencies = { '$':'USD', '':'T$' }