Try to fix profit/100

This commit is contained in:
Mika Bostrom 2010-08-31 11:40:21 +03:00
parent b434759037
commit 1a515534b4

View File

@ -228,15 +228,17 @@ def wmsd(stat_dict, player):
_('% won money at showdown')
)
# Money is stored as pennies, so there is an implicit 100-multiplier
# already in place
def profit100(stat_dict, player):
""" Profit won per 100 hands."""
stat = 0.0
try:
stat = float(stat_dict[player]['net'])/float(stat_dict[player]['n'])
return (stat,
'%.0f' % (100.0*stat),
'p=%.0f' % (100.0*stat),
'p/100=%.0f' % (100.0*stat),
'%.2f' % (stat),
'p=%.2f' % (stat),
'p/100=%.2f' % (stat),
'%d/%d' % (stat_dict[player]['net'], stat_dict[player]['n']),
_('profit/100hands')
)