From 186ef42663e9aad52417232aee135a9146402279 Mon Sep 17 00:00:00 2001 From: Worros Date: Tue, 16 Dec 2008 23:48:49 +0900 Subject: [PATCH] Upper case Flop Turn and River in board dict --- pyfpdb/Hand.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index a91038f6..22f90948 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -365,17 +365,17 @@ Map the tuple self.gametype onto the pokerstars string describing it self.printActionLine(act, fh) if 'FLOP' in self.actions: - print >>fh, _("*** FLOP *** [%s]" %( " ".join(self.board['Flop']))) + print >>fh, _("*** FLOP *** [%s]" %( " ".join(self.board['FLOP']))) for act in self.actions['FLOP']: self.printActionLine(act, fh) if 'TURN' in self.actions: - print >>fh, _("*** TURN *** [%s] [%s]" %( " ".join(self.board['Flop']), " ".join(self.board['Turn']))) + print >>fh, _("*** TURN *** [%s] [%s]" %( " ".join(self.board['FLOP']), " ".join(self.board['TURN']))) for act in self.actions['TURN']: self.printActionLine(act, fh) if 'RIVER' in self.actions: - print >>fh, _("*** RIVER *** [%s] [%s]" %(" ".join(self.board['Flop']+self.board['Turn']), " ".join(self.board['River']) )) + print >>fh, _("*** RIVER *** [%s] [%s]" %(" ".join(self.board['FLOP']+self.board['TURN']), " ".join(self.board['RIVER']) )) for act in self.actions['RIVER']: self.printActionLine(act, fh)