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:
405e333
)
Fix broken repr.
author
Joe Wreschnig
<joe.wreschnig@gmail.com>
Fri, 19 Mar 2010 05:59:11 +0000
(22:59 -0700)
committer
Joe Wreschnig
<joe.wreschnig@gmail.com>
Fri, 19 Mar 2010 05:59:11 +0000
(22:59 -0700)
bulletml/parser.py
patch
|
blob
|
history
diff --git
a/bulletml/parser.py
b/bulletml/parser.py
index 487009330bf1f824b38cf0f76f082a5c094fd83e..9b2fbf8577a94d6796b0b7f209dd291e4e34b4fc 100644
(file)
--- a/
bulletml/parser.py
+++ b/
bulletml/parser.py
@@
-780,9
+780,8
@@
class BulletML(object):
raise ParseError("unknown initial character %r" % start)
def __repr__(self):
- return "%s(type=%r, bullets=%r, actions=%r, fires=%r)" % (
- type(self).__name__, self.type, self.bullets, self.actions,
- self.fires)
+ return "%s(type=%r, actions=%r)" % (
+ type(self).__name__, self.type, self.actions)
ActionDef.CONSTRUCTORS = dict(
repeat=Repeat,