Removed debug messages in tictactoeboard.py

This commit is contained in:
Kallfaktorn 2011-01-28 10:22:41 +01:00
parent affcb739b4
commit 0b23cd8942
10 changed files with 0 additions and 1 deletions

View file

@ -35,7 +35,6 @@ class TicTacToeBoard(Board):
image = self.image_x
elif game_rectangle.state == 'o':
image = self.image_o
print(game_rectangle.state)
table_image.blit(image, Rect(x, y, w, h))
def make_turn(self, mouse_point):