From 69872b9638ad8d72506c40a41b2be27cfdb252b7 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Thu, 9 Sep 2010 12:35:05 +0200 Subject: [PATCH] PS summaries import skipped digits of tourney no --- pyfpdb/PokerStarsSummary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/PokerStarsSummary.py b/pyfpdb/PokerStarsSummary.py index a748b61a..c88641ba 100644 --- a/pyfpdb/PokerStarsSummary.py +++ b/pyfpdb/PokerStarsSummary.py @@ -93,7 +93,7 @@ class PokerStarsSummary(TourneySummary): def parseSummary(self): lines=self.summaryText.splitlines() - self.tourNo = self.re_TourNo.findall(lines[0])[0][1:-1] #ignore game and limit type as thats not recorded + self.tourNo = self.re_TourNo.findall(lines[0])[0] #ignore game and limit type as thats not recorded result=self.re_GameInfo.search(lines[0]) result=result.groupdict()