From 649b5a7f0f1baf8cd013a231d2c2b0e796a9955d Mon Sep 17 00:00:00 2001 From: Joe Wreschnig Date: Thu, 18 Mar 2010 22:59:11 -0700 Subject: [PATCH] Fix broken repr. --- bulletml/parser.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bulletml/parser.py b/bulletml/parser.py index 4870093..9b2fbf8 100644 --- 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, -- 2.20.1