Add __str__ to FrozenEvent

pull/25/head
Erik Johnston 2014-12-10 11:38:08 +00:00
parent 95aa903ffa
commit 102d2373b4
1 changed files with 5 additions and 0 deletions

View File

@ -160,3 +160,8 @@ class FrozenEvent(EventBase):
def get_dict(self):
# We need to unfreeze what we return
return _unfreeze(super(FrozenEvent, self).get_dict())
def __str__(self):
return "<FrozenEvent event_id='%s', type='%s', state_key='%s'>" % (
self.event_id, self.type, self.state_key,
)