diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-10-05 11:14:17 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-10-05 11:14:17 +1300 |
commit | 495daf2b641d14bbe8d7cab1482e12e8c8d7ea1b (patch) | |
tree | a4e23755047195e763baa6623fea3b04a8cbb0aa /libpathod/pathoc.py | |
parent | 2bdb5d15b935f345e769bacafe60f0f594929f31 (diff) | |
download | mitmproxy-495daf2b641d14bbe8d7cab1482e12e8c8d7ea1b.tar.gz mitmproxy-495daf2b641d14bbe8d7cab1482e12e8c8d7ea1b.tar.bz2 mitmproxy-495daf2b641d14bbe8d7cab1482e12e8c8d7ea1b.zip |
Remove actions log and explain, preparing for a more sophisticated take on this.
Diffstat (limited to 'libpathod/pathoc.py')
-rw-r--r-- | libpathod/pathoc.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libpathod/pathoc.py b/libpathod/pathoc.py index bab568ca..3ed09190 100644 --- a/libpathod/pathoc.py +++ b/libpathod/pathoc.py @@ -83,13 +83,6 @@ class Pathoc(tcp.TCPClient): if req: if ignorecodes and resp and resp[1] in ignorecodes: return - if explain: - print >> fp, ">>", req["method"], repr(req["path"]) - for a in req["actions"]: - print >> fp, "\t", - for x in a: - print >> fp, x, - print >> fp if showreq: self._show(fp, ">> Request", self.wfile.get_log(), hexdump) |