From 6195397c88b397f40939746d2f392be4d4b34c85 Mon Sep 17 00:00:00 2001 From: Eric Blade Date: Thu, 3 Dec 2009 12:52:57 -0500 Subject: [PATCH] fix typos.. durrr --- pyfpdb/fpdb_simple.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyfpdb/fpdb_simple.py b/pyfpdb/fpdb_simple.py index a6071a83..aa9421f6 100644 --- a/pyfpdb/fpdb_simple.py +++ b/pyfpdb/fpdb_simple.py @@ -1241,12 +1241,12 @@ sure to also change the following storage method and table_viewer.prepare_data i #calculate saw* values - isAllIn = any(i for i in AllIns[0][player]) + isAllIn = any(i for i in allIns[0][player]) if isAllIn or len(action_types[1][player]) > 0: myStreet1Seen = True if not isAllIn: - isAllIn = any(i for i in allins[1][player]) + isAllIn = any(i for i in allIns[1][player]) elif len(action_types[2][player]) > 0: if all(actiontype != "fold" for actiontype in action_types[1][player]): myStreet2Seen = True @@ -1263,7 +1263,7 @@ sure to also change the following storage method and table_viewer.prepare_data i else: #print "in else" if not isAllIn: - isAllIn = any(i for i in allins[3][player]) + isAllIn = any(i for i in allIns[3][player]) elif len(action_types[4][player]) > 0: #print "in if" myStreet4Seen = True