p113 - fixed bug in parseWinLine that it would cut off the first digit for tourneys.

This commit is contained in:
steffen123 2008-10-05 04:45:53 +01:00
parent f9f58f88e6
commit 463432afbc

View File

@ -938,7 +938,7 @@ def parseWinLine(line, site, names, winnings, isTourney):
for i in range(len(names)):
if (line.startswith(names[i].encode("latin-1"))): #found a winner
if isTourney:
pos1=line.rfind("collected ")+11
pos1=line.rfind("collected ")+10
if (site=="ftp"):
pos2=line.find(")", pos1)
elif (site=="ps"):