From c372d26093503fdb6336bd41f9070674745c0b4e Mon Sep 17 00:00:00 2001 From: toastertaster Date: Thu, 21 Jun 2012 01:18:37 +0000 Subject: Small comment change --- diff --git a/physics.py b/physics.py index 32aa10a..a3be7ef 100644 --- a/physics.py +++ b/physics.py @@ -53,7 +53,7 @@ class PhysicsGame: self.font = pygame.font.Font(None, 24) # font object self.canvas = olpcgames.ACTIVITY.canvas # canvas object self.joystickobject = None # TODO Figure out why this exists - self.debug = True # TODO Figure out what this does. + self.debug = True # TODO Figure out what this does self.running = False @@ -141,7 +141,7 @@ class PhysicsGame: the currenttool to be the specified tool. """ self.currenttool.cancel() - self.currenttool = self.toolList[tool] + self.currenttool = self.toollist[tool] # main() is a function, by itself. It is not in a class. def main(): -- cgit v0.9.1