changeset 96:6c11991e23fb

Move close bracket
author Stefano Rivera <stefano@rivera.za.net>
date Sun, 11 Sep 2011 19:24:51 +0200
parents 7a17c5b74148
children c65046b5bafd
files mamba/engine.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mamba/engine.py	Sun Sep 11 19:17:57 2011 +0200
+++ b/mamba/engine.py	Sun Sep 11 19:24:51 2011 +0200
@@ -43,8 +43,8 @@
     def __init__(self, size=SCREEN):
         self.surface_size = size
         self.surface = None
-        self.container = Container(pygame.Rect((0, 0), self.surface_size,
-            root=True))
+        self.container = Container(pygame.Rect((0, 0), self.surface_size),
+                                   root=True)
 
     def on_enter(self):
         """Called when this becomes the current habitat."""