projects
/
python-bulletml.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee9429c
)
Bullet.__repr__: Fix format string.
author
Joe Wreschnig
<joe.wreschnig@gmail.com>
Fri, 23 Apr 2010 08:57:40 +0000
(
01:57
-0700)
committer
Joe Wreschnig
<joe.wreschnig@gmail.com>
Fri, 23 Apr 2010 08:57:40 +0000
(
01:57
-0700)
bulletml/impl.py
patch
|
blob
|
history
diff --git
a/bulletml/impl.py
b/bulletml/impl.py
index 8ef78abd7f0863f65fb379f812809e9bfdfde92e..f7edd5a458d05ca0399a70e3ac7ce4f1549f70d3 100644
(file)
--- 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)