From 7fd90ce760622a5b6e207f28bbcf6aa4a11a3a58 Mon Sep 17 00:00:00 2001 From: Worros Date: Wed, 25 Feb 2009 01:27:10 +0900 Subject: [PATCH] Thinko - use right regex --- pyfpdb/FulltiltToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/FulltiltToFpdb.py b/pyfpdb/FulltiltToFpdb.py index ecaab23a..043d37b1 100755 --- a/pyfpdb/FulltiltToFpdb.py +++ b/pyfpdb/FulltiltToFpdb.py @@ -152,7 +152,7 @@ class FullTilt(HandHistoryConverter): def readBringIn(self, hand): print "DEBUG: reading bring in" # print hand.string - m = self.re_Button.search(hand.string,re.DOTALL) + m = self.re_BringIn.search(hand.string,re.DOTALL) print "DEBUG: Player bringing in: %s for %s" %(m.group('PNAME'), m.group('BRINGIN')) def readButton(self, hand):