diff options
| author | Thomas Kriechbaumer <Kriechi@users.noreply.github.com> | 2016-04-03 10:14:06 +0200 |
|---|---|---|
| committer | Thomas Kriechbaumer <Kriechi@users.noreply.github.com> | 2016-04-03 10:14:06 +0200 |
| commit | 94342891ee17c1647e5071d6591ad413b6650473 (patch) | |
| tree | 4dd7e1abd69c9ee2559d45fbdc3bfee4f8167039 /pathod | |
| parent | a267934d99e2e5d561a71ee3bc3944ddb6f6ce53 (diff) | |
| parent | 35a6d6e7f67f8253a32a670a4629b530d7758650 (diff) | |
| download | mitmproxy-94342891ee17c1647e5071d6591ad413b6650473.tar.gz mitmproxy-94342891ee17c1647e5071d6591ad413b6650473.tar.bz2 mitmproxy-94342891ee17c1647e5071d6591ad413b6650473.zip | |
Merge pull request #1072 from mitmproxy/remove-response-msg
response.msg -> response.reason
Diffstat (limited to 'pathod')
| -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 0e6d3ca7..f55a2eda 100644 --- a/pathod/pathoc.py +++ b/pathod/pathoc.py @@ -425,7 +425,7 @@ class Pathoc(tcp.TCPClient): finally: if resp: lg("<< %s %s: %s bytes" % ( - resp.status_code, utils.xrepr(resp.msg), len(resp.content) + resp.status_code, utils.xrepr(resp.reason), len(resp.content) )) if resp.status_code in self.ignorecodes: lg.suppress() |
