diff --git a/pyfpdb/TestHandsPlayers.py b/pyfpdb/TestHandsPlayers.py index 15925e2e..b6596933 100644 --- a/pyfpdb/TestHandsPlayers.py +++ b/pyfpdb/TestHandsPlayers.py @@ -39,9 +39,12 @@ def compare(leaf, importer): for hand in handlist: ghash = hand.stats.getHandsPlayers() for p in ghash: + #print "DEBUG: player: '%s'" % p pstat = ghash[p] teststat = testhash[p] + for stat in pstat: + #print "pstat[%s][%s]: %s == %s" % (p, stat, pstat[stat], teststat[stat]) if pstat[stat] == teststat[stat]: # The stats match - continue pass