From: Joe Wreschnig Date: Fri, 19 Mar 2010 05:59:11 +0000 (-0700) Subject: Fix broken repr. X-Git-Url: https://git.yukkurigames.com/?p=python-bulletml.git;a=commitdiff_plain;h=649b5a7f0f1baf8cd013a231d2c2b0e796a9955d;hp=405e333fe99b3625b0d89565de4e83984b462a3e Fix broken repr. --- 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,