Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--blocku.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/blocku.py b/blocku.py
index 787a07b..53d58a6 100644
--- a/blocku.py
+++ b/blocku.py
@@ -73,8 +73,8 @@ def main():
pygame.display.set_mode((0, 0), pygame.RESIZABLE)
game = Game()
game.run()
- >>> screen = [1,1,2,2,2,1]
- >>> print screen
+ screen = [1,1,2,2,2,1]
+ print screen
if __name__ == '__main__':
main()