diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2015-04-12 11:32:27 +1200 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2015-04-12 11:32:27 +1200 |
commit | 1a79ef8b6ce280563a9c5b3289ec2ecf4024c6b7 (patch) | |
tree | 6fa02d74fc2c43c2ad8c43ba5d669c54c43d2dc8 /netlib/http.py | |
parent | 2630da7263242411d413b5e4b2c520d29848c918 (diff) | |
parent | e58f76aec1db9cc784a3b73c3050d010bb084968 (diff) | |
download | mitmproxy-1a79ef8b6ce280563a9c5b3289ec2ecf4024c6b7.tar.gz mitmproxy-1a79ef8b6ce280563a9c5b3289ec2ecf4024c6b7.tar.bz2 mitmproxy-1a79ef8b6ce280563a9c5b3289ec2ecf4024c6b7.zip |
Merge branch 'master' of https://github.com/mitmproxy/netlib
Diffstat (limited to 'netlib/http.py')
-rw-r--r-- | netlib/http.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/netlib/http.py b/netlib/http.py index d2fc6343..26438863 100644 --- a/netlib/http.py +++ b/netlib/http.py @@ -333,8 +333,8 @@ def read_response(rfile, request_method, body_size_limit, include_body=True): False ) else: - # if include_body==False then a None content means the body should be - # read separately + # if include_body==False then a None content means the body should be + # read separately content = None return httpversion, code, msg, headers, content |