Revert "FTtoFPDB: readBlinds: cleanup exception handler"
This reverts commit 0938afb882
.
Conflicts:
pyfpdb/FulltiltToFpdb.py
This commit is contained in:
parent
05267db38a
commit
226153f15f
|
@ -290,11 +290,10 @@ class Fulltilt(HandHistoryConverter):
|
|||
|
||||
def readBlinds(self, hand):
|
||||
try:
|
||||
m = self.re_PostBB.search(hand.handText)
|
||||
m = self.re_PostSB.search(hand.handText)
|
||||
hand.addBlind(m.group('PNAME'), 'small blind', m.group('SB'))
|
||||
except IndexError: # no small blind found
|
||||
except: # no small blind
|
||||
hand.addBlind(None, None, None)
|
||||
|
||||
for a in self.re_PostBB.finditer(hand.handText):
|
||||
hand.addBlind(a.group('PNAME'), 'big blind', a.group('BB'))
|
||||
for a in self.re_PostBoth.finditer(hand.handText):
|
||||
|
|
Loading…
Reference in New Issue
Block a user