fpdb_parse_logic: fix possible breakage i might've made to tournament parse

fpdb_simple: more usage of 'any' operator where appropriate
This commit is contained in:
eblade
2009-03-19 03:30:44 -04:00
parent e4ac034774
commit 375e0ed7c9
2 changed files with 11 additions and 16 deletions
+1 -2
View File
@@ -141,8 +141,7 @@ def mainParser(backend, db, cursor, site, category, hand, config):
, actionTypes, actionAmounts, antes)
if isTourney:
ranks = []
map(lambda x: 0, names) # create an array of 0's equal to the length of names
ranks = map(lambda x: 0, names) # create an array of 0's equal to the length of names
payin_amounts = fpdb_simple.calcPayin(len(names), buyin, fee)
if base == "hold":