diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 26e95394..7965f81d 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -292,7 +292,7 @@ class DerivedStats(): # hand.players includes people that are sitting out on some sites. # 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): actions = hand.actions[street] diff --git a/pyfpdb/FulltiltToFpdb.py b/pyfpdb/FulltiltToFpdb.py index cfeb7de1..e2bbc85f 100755 --- a/pyfpdb/FulltiltToFpdb.py +++ b/pyfpdb/FulltiltToFpdb.py @@ -704,5 +704,3 @@ if __name__ == "__main__": e = Fulltilt(in_path = options.ipath, out_path = options.opath, follow = options.follow) - - diff --git a/pyfpdb/fpdb.pyw b/pyfpdb/fpdb.pyw index d76eb62f..70986c3e 100755 --- a/pyfpdb/fpdb.pyw +++ b/pyfpdb/fpdb.pyw @@ -101,7 +101,7 @@ except: import GuiPrefs import GuiLogView -import GuiDatabase +#import GuiDatabase import GuiBulkImport import ImapFetcher import GuiRingPlayerStats