stat windows no longer call realize() as that is done automatically by gtk when needed

importer dumps bad hands to hand-errors.txt after printing the normal email message
parse_logic should ignore lines where small blind is found to be "$0", however, it's still causing errors
This commit is contained in:
eblade
2008-11-27 05:12:07 -05:00
parent 6e116f4b02
commit 274cecdc58
3 changed files with 11 additions and 4 deletions
+2
View File
@@ -42,6 +42,8 @@ def mainParser(db, cursor, site, category, hand):
smallBlindLine=0
for i in range(len(hand)):
if hand[i].find("posts small blind")!=-1 or hand[i].find("posts the small blind")!=-1:
if hand[i][-2:] == "$0":
continue
smallBlindLine=i
#print "found small blind line:",smallBlindLine
break