p108 - These damn small blinds... all previously supported tourneys should be working again now

This commit is contained in:
steffen123 2008-09-26 14:39:24 +01:00
parent b549aa2605
commit 622a00be96

View File

@ -1045,6 +1045,9 @@ def recogniseGametypeID(cursor, topline, smallBlindLine, site_id, category, isTo
if base=="hold":
if smallBlindLine==topline:
raise FpdbError("invalid small blind line")
elif isTourney:
pos=smallBlindLine.rfind(" ")+1
small_blind=int(smallBlindLine[pos:])
else:
pos=smallBlindLine.rfind("$")+1
small_blind=float2int(smallBlindLine[pos:])