Hand: Remove non-standard exception handler

That code should either crash or raise a FpdbParse* exception which will be caught at a higher level
This commit is contained in:
Worros 2010-09-14 13:53:47 +08:00
parent ea5afdb14c
commit 1a7b1caf48

View File

@ -697,10 +697,8 @@ class HoldemOmahaHand(Hand):
if self.cancelled:
return
try: hhc.readBlinds(self)
except:
print _("*** Parse error reading blinds (check compilePlayerRegexs as a likely culprit)"), self
return
hhc.readBlinds(self)
print _("*** Parse error reading blinds (check compilePlayerRegexs as a likely culprit)"), self
hhc.readAntes(self)
hhc.readButton(self)