From 35f36481b9f9a8050e0316600be168316b60d05e Mon Sep 17 00:00:00 2001 From: Rouli Date: Thu, 28 Feb 2013 13:28:42 +0200 Subject: [PATCH] adding __str__ to make export to har nicer --- libmproxy/flow.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libmproxy/flow.py b/libmproxy/flow.py index 9238cfbf0..af97698c4 100644 --- a/libmproxy/flow.py +++ b/libmproxy/flow.py @@ -812,6 +812,11 @@ class ClientConnect(controller.Msg): def __eq__(self, other): 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): self.close = True self.error = state["error"]