Revert "FTtoFPDB: readBlinds: cleanup exception handler"

This reverts commit 0938afb882.

Conflicts:

	pyfpdb/FulltiltToFpdb.py
This commit is contained in:
Eric Blade 2009-09-16 01:40:43 -05:00
parent 05267db38a
commit 226153f15f

View File

@ -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):