diff --git a/pyfpdb/FulltiltToFpdb.py b/pyfpdb/FulltiltToFpdb.py index 83811d9f..4fb0e8b3 100755 --- a/pyfpdb/FulltiltToFpdb.py +++ b/pyfpdb/FulltiltToFpdb.py @@ -144,7 +144,6 @@ follow : whether to tail -f the input""" def readHandInfo(self, hand): m = self.re_HandInfo.search(hand.handText,re.DOTALL) - print "m =", m.groupdict() if(m == None): logging.info("Didn't match re_HandInfo") logging.info(hand.handText) @@ -230,7 +229,7 @@ follow : whether to tail -f the input""" logging.debug("Player bringing in: %s for %s" %(m.group('PNAME'), m.group('BRINGIN'))) hand.addBringIn(m.group('PNAME'), m.group('BRINGIN')) else: - logging.warning("No bringin found") + logging.warning("No bringin found, handid =%s" % hand.handid) def readButton(self, hand): hand.buttonpos = int(self.re_Button.search(hand.handText).group('BUTTON')) @@ -330,7 +329,6 @@ follow : whether to tail -f the input""" if m == None: hand.mixed = None else: hand.mixed = self.mixes[m.groupdict()['MIXED']] - print "mixed =", hand.mixed if __name__ == "__main__": parser = OptionParser() diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index b886f57f..6eb1d9b4 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -880,6 +880,7 @@ class DrawHand(Hand): hhc.getRake(self) if self.maxseats == None: self.maxseats = hhc.guessMaxSeats(self) + hhc.readOther(self) elif builtFrom == "DB": self.select("dummy") # Will need a handId @@ -1047,6 +1048,7 @@ class StudHand(Hand): hhc.getRake(self) if self.maxseats == None: self.maxseats = hhc.guessMaxSeats(self) + hhc.readOther(self) elif builtFrom == "DB": self.select("dummy") # Will need a handId