diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-07-22 15:26:05 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-07-22 15:26:05 +1200 |
commit | 817e550aa1da0eab8b9116f46f8d65a80fcb46e2 (patch) | |
tree | 0a961b2610fa2a213ef8def8d0317ea0f372ea5d /libpathod/pathoc.py | |
parent | 30a69883925a4ee01b6eb0586e8295fa72458b16 (diff) | |
download | mitmproxy-817e550aa1da0eab8b9116f46f8d65a80fcb46e2.tar.gz mitmproxy-817e550aa1da0eab8b9116f46f8d65a80fcb46e2.tar.bz2 mitmproxy-817e550aa1da0eab8b9116f46f8d65a80fcb46e2.zip |
Multiline specifications for pathod and pathoc.
Diffstat (limited to 'libpathod/pathoc.py')
-rw-r--r-- | libpathod/pathoc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpathod/pathoc.py b/libpathod/pathoc.py index 793135e7..9970ffd9 100644 --- a/libpathod/pathoc.py +++ b/libpathod/pathoc.py @@ -40,7 +40,7 @@ class Pathoc(tcp.TCPClient): r = rparse.parse_request({}, i) req = r.serve(self.wfile) if reqdump: - print >> fp, "\n>>", req["method"], req["path"] + print >> fp, "\n>>", req["method"], repr(req["path"]) for a in req["actions"]: print >> fp, "\t", for x in a: |