aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/pathoc.py
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2016-08-16 18:31:50 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-09-01 09:57:18 +0200
commite5b0dae7e9ef8d2ce62fc263c377c76546190825 (patch)
treed3b7257cfb0a0e66e2e7176f9d32bc16d820e618 /pathod/pathoc.py
parentd12515f84b32b3157fa99ac3c3a7a7318f9626ba (diff)
downloadmitmproxy-e5b0dae7e9ef8d2ce62fc263c377c76546190825.tar.gz
mitmproxy-e5b0dae7e9ef8d2ce62fc263c377c76546190825.tar.bz2
mitmproxy-e5b0dae7e9ef8d2ce62fc263c377c76546190825.zip
add websockets support to mitmproxy
Diffstat (limited to 'pathod/pathoc.py')
-rw-r--r--pathod/pathoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pathod/pathoc.py b/pathod/pathoc.py
index 5831ba3e..a8923013 100644
--- a/pathod/pathoc.py
+++ b/pathod/pathoc.py
@@ -139,7 +139,7 @@ class WebsocketFrameReader(basethread.BaseThread):
except exceptions.TcpDisconnect:
return
self.frames_queue.put(frm)
- log("<< %s" % frm.header.human_readable())
+ log("<< %s" % repr(frm.header))
if self.ws_read_limit is not None:
self.ws_read_limit -= 1
starttime = time.time()