From 7925747213eb97b33156f2c44d63ed4c31f548de Mon Sep 17 00:00:00 2001 From: steffen123 Date: Sun, 11 Jul 2010 02:07:03 +0200 Subject: [PATCH] now records winnings for finishers in unfinished tourneys --- pyfpdb/PokerStarsSummary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/PokerStarsSummary.py b/pyfpdb/PokerStarsSummary.py index a71baa40..e8744fbf 100644 --- a/pyfpdb/PokerStarsSummary.py +++ b/pyfpdb/PokerStarsSummary.py @@ -28,7 +28,7 @@ class PokerStarsSummary(TourneySummary): re_TourNo = re.compile("\#[0-9]+,") re_Entries = re.compile("[0-9]+") re_Prizepool = re.compile("\$[0-9]+\.[0-9]+") - re_Player = re.compile("""(?P[0-9]+):\s(?P.*)\s\(.*\),(\s\$(?P[0-9]+\.[0-9]+)\s\()?(\s(?Pstill\splaying))?""") + re_Player = re.compile("""(?P[0-9]+):\s(?P.*)\s\(.*\)(,\s)?(\$(?P[0-9]+\.[0-9]+))?(?Pstill\splaying)?""") re_BuyInFee = re.compile("(?P[0-9]+\.[0-9]+).*(?P[0-9]+\.[0-9]+)") re_FPP = re.compile("(?P[0-9]+)\sFPP") #note: the dollar and cent in the below line are currency-agnostic