set isKO to false when we know it's not a KO

This commit is contained in:
steffen123 2010-08-03 22:25:49 +02:00
parent edd0d36aa7
commit faee37e101

View File

@ -262,6 +262,8 @@ class PokerStars(HandHistoryConverter):
info['BOUNTY'] = info['BOUNTY'].strip(u'$€') # Strip here where it isn't 'None'
hand.koBounty = int(100*Decimal(info['BOUNTY']))
hand.isKO = True
else:
hand.isKO = False
info['BIRAKE'] = info['BIRAKE'].strip(u'$€')