here you go

This commit is contained in:
Matt Turnbull
2009-03-11 14:05:38 +00:00
parent b64c4f301e
commit 1bbb2f2769
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -430,7 +430,7 @@ Card ranks will be uppercased
print >>fh, _("Table '%s' %d-max Seat #%s is the button" %(self.tablename, self.maxseats, self.buttonpos))
players_who_act_preflop = set([x[0] for x in self.actions['PREFLOP']])
logging.debug(self.actions['PREFLOP'])
for player in [x for x in self.players if x[1] in players_who_act_preflop]:
#Only print stacks of players who do something preflop
print >>fh, _("Seat %s: %s ($%s in chips) " %(player[0], player[1], player[2]))