diff options
| author | Thomas Kriechbaumer <Kriechi@users.noreply.github.com> | 2016-09-01 10:39:57 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-01 10:39:57 +0200 | 
| commit | 55d938b880fd861a22ac66da0da9a741bdd9abd5 (patch) | |
| tree | d469bbd0dd5b1966591a332bf2094d4389100219 /pathod/pathoc.py | |
| parent | 281d779fa3eb6b81ec76d046337275c0a82eff46 (diff) | |
| parent | 0d0c2c788df4b60e951e6fcc13b479de8cec22c1 (diff) | |
| download | mitmproxy-55d938b880fd861a22ac66da0da9a741bdd9abd5.tar.gz mitmproxy-55d938b880fd861a22ac66da0da9a741bdd9abd5.tar.bz2 mitmproxy-55d938b880fd861a22ac66da0da9a741bdd9abd5.zip | |
Merge pull request #1488 from mitmproxy/websockets
add WebSockets support
Diffstat (limited to 'pathod/pathoc.py')
| -rw-r--r-- | pathod/pathoc.py | 2 | 
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() | 
