From 7abcca345f1b95ea24334e6f2f5c031e9f0dbd1b Mon Sep 17 00:00:00 2001 From: Eratosthenes Date: Tue, 28 Dec 2010 23:43:15 -0500 Subject: [PATCH] Fix table finding for PokerStars.it tournaments. Still needs work. --- pyfpdb/HandHistoryConverter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/HandHistoryConverter.py b/pyfpdb/HandHistoryConverter.py index 62383beb..a3e48bf4 100644 --- a/pyfpdb/HandHistoryConverter.py +++ b/pyfpdb/HandHistoryConverter.py @@ -673,7 +673,7 @@ or None if we fail to get the info """ "Returns string to search window title for tournament table no." # Full Tilt: $30 + $3 Tournament (181398949), Table 1 - 600/1200 Ante 100 - Limit Razz # PokerStars: WCOOP 2nd Chance 02: $1,050 NLHE - Tournament 307521826 Table 1 - Blinds $30/$60 - return "%s.+Table (\d+)" % (tournament, ) + return "%s.+(?:Table|Torneo) (\d+)" % (tournament, ) def getTableTitleRe(config, sitename, *args, **kwargs): "Returns string to search in windows titles for current site"