From 5611f115cddeae2948a2e538860a7d15baf114b1 Mon Sep 17 00:00:00 2001 From: Worros Date: Tue, 30 Jun 2009 18:32:30 +0800 Subject: [PATCH] Remove DEBUG line that wasn't supposed to make the last commit --- pyfpdb/Hand.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index 38c3609b..61e06930 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -202,7 +202,6 @@ If a player has None chips he won't be added.""" def setCommunityCards(self, street, cards): logging.debug("setCommunityCards %s %s" %(street, cards)) self.board[street] = [self.card(c) for c in cards] - print "DEBUG: self.board: %s" % self.board def card(self,c): """upper case the ranks but not suits, 'atjqk' => 'ATJQK'"""