This commit is contained in:
grindi 2009-08-12 12:47:18 +04:00
parent 0aed2c2461
commit dd17155aa9
2 changed files with 2 additions and 2 deletions

View File

@ -150,7 +150,7 @@ class Fulltilt(HandHistoryConverter):
self.obs = self.obs.replace('\r\n', '\n')
if self.obs == "" or self.obs == None:
logging.info("Read no hands.")
return
return []
return re.split(self.re_SplitHands, self.obs)
def readHandInfo(self, hand):

View File

@ -211,7 +211,7 @@ which it expects to find at self.re_TailSplitHands -- see for e.g. Everleaf.py.
self.obs = self.obs.replace('\r\n', '\n')
if self.obs == "" or self.obs == None:
log.info("Read no hands.")
return
return []
return re.split(self.re_SplitHands, self.obs)
def processHand(self, handText):