Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--physics.py4
1 files changed, 2 insertions, 2 deletions
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():