Merge branch 'master' of git://git.assembla.com/free_poker_tools.git

This commit is contained in:
Eric Blade 2010-08-05 04:11:36 -04:00
commit 7486095069
3 changed files with 2 additions and 4 deletions

View File

@ -292,7 +292,7 @@ class DerivedStats():
# hand.players includes people that are sitting out on some sites. # hand.players includes people that are sitting out on some sites.
# Those that posted an ante should have been deal cards. # Those that posted an ante should have been deal cards.
p_in = set([x[0] for x in hand.actions['BLINDSANTES']] + [x[0] for x in hand.actions['PREFLOP']]) p_in = set([x[0] for x in hand.actions[hand.allStreets[0]]] + [x[0] for x in hand.actions[hand.actionStreets[0]]])
for (i, street) in enumerate(hand.actionStreets): for (i, street) in enumerate(hand.actionStreets):
actions = hand.actions[street] actions = hand.actions[street]

View File

@ -704,5 +704,3 @@ if __name__ == "__main__":
e = Fulltilt(in_path = options.ipath, out_path = options.opath, follow = options.follow) e = Fulltilt(in_path = options.ipath, out_path = options.opath, follow = options.follow)

View File

@ -101,7 +101,7 @@ except:
import GuiPrefs import GuiPrefs
import GuiLogView import GuiLogView
import GuiDatabase #import GuiDatabase
import GuiBulkImport import GuiBulkImport
import ImapFetcher import ImapFetcher
import GuiRingPlayerStats import GuiRingPlayerStats