From: adrianna Date: Sat, 17 May 2014 07:55:22 +0000 (+0200) Subject: remove stray prints X-Git-Tag: 0.1~139 X-Git-Url: https://git.ctpug.org.za/?p=naja.git;a=commitdiff_plain;h=fb1393cb0aaad9b0a4a4679b17794f9894573c44 remove stray prints --- diff --git a/naja/gameboard.py b/naja/gameboard.py index 5e12568..7d8916e 100644 --- a/naja/gameboard.py +++ b/naja/gameboard.py @@ -181,13 +181,9 @@ class GameBoard(object): if px > 0: locations_to_rotate.append((px - 1, py)) - print "rotating", direction - if ROTATION[direction] == ROTATION.CLOCKWISE: - print "CLOCKWISE" new_positions = locations_to_rotate[1:] + [locations_to_rotate[0]] elif ROTATION[direction] == ROTATION.ANTICLOCKWISE: - print "ANTICLOCKWISE" new_positions = ([locations_to_rotate[-1]] + locations_to_rotate[:-1]) for old, new in zip(locations_to_rotate, new_positions):