From c582507b9f0af90761c592fe67815729acd82dfb Mon Sep 17 00:00:00 2001 From: Worros Date: Thu, 12 Mar 2009 10:49:16 +0900 Subject: [PATCH] Quick fix for typo - Fixes FTP Razz import --- pyfpdb/FulltiltToFpdb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyfpdb/FulltiltToFpdb.py b/pyfpdb/FulltiltToFpdb.py index e585c67a..213f7ecc 100755 --- a/pyfpdb/FulltiltToFpdb.py +++ b/pyfpdb/FulltiltToFpdb.py @@ -265,7 +265,7 @@ follow : whether to tail -f the input""" for action in m: if action.group('ATYPE') == ' raises to': hand.addRaiseTo( street, action.group('PNAME'), action.group('BET') ) - if action.group('ATYPE') == ' completes it to': + elif action.group('ATYPE') == ' completes it to': hand.addComplete( street, action.group('PNAME'), action.group('BET') ) elif action.group('ATYPE') == ' calls': hand.addCall( street, action.group('PNAME'), action.group('BET') ) @@ -276,7 +276,7 @@ follow : whether to tail -f the input""" elif action.group('ATYPE') == ' checks': hand.addCheck( street, action.group('PNAME')) else: - print "DEBUG: unimplemented readAction: %s %s" %(action.group('PNAME'),action.group('ATYPE'),) + print "DEBUG: unimplemented readAction: '%s' '%s'" %(action.group('PNAME'),action.group('ATYPE'),) def readShowdownActions(self, hand):