diff options
author | Matthew Shao <me@matshao.com> | 2016-03-26 11:26:42 +0800 |
---|---|---|
committer | Matthew Shao <me@matshao.com> | 2016-03-26 11:26:42 +0800 |
commit | 2f285a6015abaf75ced34231f698537ef210ffed (patch) | |
tree | 9418c8ae0642b247e9fe7ca6272c8309d1ee8337 /netlib/http | |
parent | 2d6eb28fd07359a5c7d909abdee903b9758b7572 (diff) | |
download | mitmproxy-2f285a6015abaf75ced34231f698537ef210ffed.tar.gz mitmproxy-2f285a6015abaf75ced34231f698537ef210ffed.tar.bz2 mitmproxy-2f285a6015abaf75ced34231f698537ef210ffed.zip |
Setting CONTENT_MISSING to None
Diffstat (limited to 'netlib/http')
-rw-r--r-- | netlib/http/message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/http/message.py b/netlib/http/message.py index e3d8ce37..4ddc1b81 100644 --- a/netlib/http/message.py +++ b/netlib/http/message.py @@ -7,7 +7,7 @@ import six from .headers import Headers from .. import encoding, utils -CONTENT_MISSING = 0 +CONTENT_MISSING = None if six.PY2: # pragma: nocover _native = lambda x: x |