Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-12-15 16:51:49 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-12-15 16:51:49 (GMT)
commit17d4afa52d87e6561282b8625d089f654c07fa23 (patch)
tree84f5f3321c748991aa96cefc2cff6060604f58cd
parent544a3b37dc38c6643dee1f31b6c34420e5fe020e (diff)
removing debug output
-rw-r--r--game.py2
1 files changed, 0 insertions, 2 deletions
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: