Add 'status' to SWF *Type string representation

This commit is contained in:
Jean-Baptiste Barth 2015-10-02 03:42:40 +02:00
commit 036ab194ba
2 changed files with 2 additions and 2 deletions

View file

@ -75,7 +75,7 @@ class GenericType(object):
def __repr__(self):
cls = self.__class__.__name__
attrs = "name: %(name)s, version: %(version)s" % self.__dict__
attrs = "name: %(name)s, version: %(version)s, status: %(status)s" % self.__dict__
return "{}({})".format(cls, attrs)
@property