Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortoastertaster <toastertaster@gmail.com>2012-06-21 01:18:37 (GMT)
committer toastertaster <toastertaster@gmail.com>2012-06-21 01:18:37 (GMT)
commitc372d26093503fdb6336bd41f9070674745c0b4e (patch)
tree58a789c5e00d2082c257f53b5242ce1989266589
parent380869994c98cdba6d1378d03eb52cb027157f84 (diff)
Small comment change
-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():