Add __str__ to FrozenEvent
This commit is contained in:
parent
95aa903ffa
commit
102d2373b4
|
@ -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,
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue