From 17d4afa52d87e6561282b8625d089f654c07fa23 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Thu, 15 Dec 2011 16:51:49 +0000 Subject: removing debug output --- diff --git a/game.py b/game.py index 15a7f3c..7d8613e 100644 --- a/game.py +++ b/game.py @@ -196,10 +196,8 @@ class Game(): ''' Robot reflects dot clicked. ''' x, y = self._dot_to_grid(self._dots.index(dot)) if self._orientation == 'horizontal': - _logger.debug('%d: %d, %d' % (self._dots.index(dot), x, y)) x = TEN - x - 1 i = self._grid_to_dot((x, y)) - _logger.debug('%d: %d, %d' % (i, x, y)) self._dots[i].type = dot.type self._dots[i].set_shape(self._new_dot(self._colors[dot.type])) if self.we_are_sharing: -- cgit v0.9.1