From 4c9526a453f57e54c603dcad10d2346d06b69fe4 Mon Sep 17 00:00:00 2001 From: Joe Wreschnig Date: Fri, 23 Apr 2010 01:57:40 -0700 Subject: [PATCH] Bullet.__repr__: Fix format string. --- bulletml/impl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bulletml/impl.py b/bulletml/impl.py index 8ef78ab..f7edd5a 100644 --- a/bulletml/impl.py +++ b/bulletml/impl.py @@ -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) -- 2.20.1