fix error only french winnamax poker
Signed-off-by: tribumarchal
This commit is contained in:
parent
920aac6f73
commit
c66ec208c2
|
@ -86,7 +86,7 @@ class Winamax(HandHistoryConverter):
|
||||||
(?P<RING>CashGame)?
|
(?P<RING>CashGame)?
|
||||||
(?P<TOUR>Tournament\s
|
(?P<TOUR>Tournament\s
|
||||||
(?P<TOURNAME>.+)?\s
|
(?P<TOURNAME>.+)?\s
|
||||||
buyIn:\s(?P<BUYIN>(?P<BIAMT>[%(LS)s\d\,]+)?\s\+?\s(?P<BIRAKE>[%(LS)s\d\,]+)?\+?(?P<BOUNTY>[%(LS)s\d\.]+)?\s?(?P<TOUR_ISO>%(LEGAL_ISO)s)?|Gratuit|Ticket\suniquement)?\s
|
buyIn:\s(?P<BUYIN>(?P<BIAMT>[%(LS)s\d\,]+)?\s\+?\s(?P<BIRAKE>[%(LS)s\d\,]+)?\+?(?P<BOUNTY>[%(LS)s\d\.]+)?\s?(?P<TOUR_ISO>%(LEGAL_ISO)s)?|Freeroll|Gratuit|Ticket\suniquement)?\s
|
||||||
(level:\s(?P<LEVEL>\d+))?
|
(level:\s(?P<LEVEL>\d+))?
|
||||||
.*)?
|
.*)?
|
||||||
\s-\sHandId:\s\#(?P<HID1>\d+)-(?P<HID2>\d+)-(?P<HID3>\d+).*\s # REB says: HID3 is the correct hand number
|
\s-\sHandId:\s\#(?P<HID1>\d+)-(?P<HID2>\d+)-(?P<HID3>\d+).*\s # REB says: HID3 is the correct hand number
|
||||||
|
@ -247,7 +247,7 @@ class Winamax(HandHistoryConverter):
|
||||||
if k in info.keys() and info[k]:
|
if k in info.keys() and info[k]:
|
||||||
info[k] = info[k].replace(',','.')
|
info[k] = info[k].replace(',','.')
|
||||||
|
|
||||||
if info[key] == 'Freeroll':
|
if info[key] == 'Gratuit':
|
||||||
hand.buyin = 0
|
hand.buyin = 0
|
||||||
hand.fee = 0
|
hand.fee = 0
|
||||||
hand.buyinCurrency = "FREE"
|
hand.buyinCurrency = "FREE"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user