THP: Minor updates
This commit is contained in:
parent
9b59d8fb9c
commit
3e6c5b6f31
|
@ -21,8 +21,6 @@
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
import codecs
|
import codecs
|
||||||
import pprint
|
|
||||||
import PokerStarsToFpdb
|
|
||||||
from Hand import *
|
from Hand import *
|
||||||
import Configuration
|
import Configuration
|
||||||
import Database
|
import Database
|
||||||
|
@ -31,6 +29,8 @@ import fpdb_import
|
||||||
import Options
|
import Options
|
||||||
import datetime
|
import datetime
|
||||||
import pytz
|
import pytz
|
||||||
|
import pprint
|
||||||
|
pp = pprint.PrettyPrinter(indent=4)
|
||||||
|
|
||||||
DEBUG = False
|
DEBUG = False
|
||||||
|
|
||||||
|
@ -149,6 +149,9 @@ def compare_hands_file(filename, importer, errors):
|
||||||
|
|
||||||
for hand in handlist:
|
for hand in handlist:
|
||||||
ghash = hand.stats.getHands()
|
ghash = hand.stats.getHands()
|
||||||
|
# Delete unused data from hash
|
||||||
|
del ghash['gsc']
|
||||||
|
del ghash['sc']
|
||||||
for datum in ghash:
|
for datum in ghash:
|
||||||
#print "DEBUG: hand: '%s'" % datum
|
#print "DEBUG: hand: '%s'" % datum
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user