Bullet.__repr__: Fix format string.
authorJoe Wreschnig <joe.wreschnig@gmail.com>
Fri, 23 Apr 2010 08:57:40 +0000 (01:57 -0700)
committerJoe Wreschnig <joe.wreschnig@gmail.com>
Fri, 23 Apr 2010 08:57:40 +0000 (01:57 -0700)
bulletml/impl.py

index 8ef78ab..f7edd5a 100644 (file)
@@ -166,7 +166,7 @@ class Bullet(object):
 
     def __repr__(self):
         return ("%s(%r, %r, accel=%r, direction=%r, speed=%r, "
-                "actions=%r, target=%r, appearance=vanished=%r)") % (
+                "actions=%r, target=%r, appearance=%r, vanished=%r)") % (
             type(self).__name__, self.x, self.y, (self.mx, self.my),
             self.direction, self.speed, self.actions, self.target,
             self.appearance, self.vanished)