adding __str__ to make export to har nicer

This commit is contained in:
Rouli 2013-02-28 13:28:42 +02:00
parent 53792a5a28
commit 35f36481b9

View File

@ -812,6 +812,11 @@ class ClientConnect(controller.Msg):
def __eq__(self, other): def __eq__(self, other):
return self._get_state() == other._get_state() return self._get_state() == other._get_state()
def __str__(self):
if self.address:
return "%s:%d"%(self.address[0],self.address[1])
return "None"
def _load_state(self, state): def _load_state(self, state):
self.close = True self.close = True
self.error = state["error"] self.error = state["error"]