diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-08-30 15:59:50 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-08-30 15:59:50 +0200 |
commit | 63ad4a4f5117d34ba6e9692eef1fc88f68b19c3d (patch) | |
tree | ee574d9a967214444fa023b110c2c5e16ae2e215 /libmproxy/protocol/http.py | |
parent | a86ec56012136664688fa4a8efcd866b5e3e17a8 (diff) | |
download | mitmproxy-63ad4a4f5117d34ba6e9692eef1fc88f68b19c3d.tar.gz mitmproxy-63ad4a4f5117d34ba6e9692eef1fc88f68b19c3d.tar.bz2 mitmproxy-63ad4a4f5117d34ba6e9692eef1fc88f68b19c3d.zip |
coverage++
Diffstat (limited to 'libmproxy/protocol/http.py')
-rw-r--r-- | libmproxy/protocol/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmproxy/protocol/http.py b/libmproxy/protocol/http.py index fc57f6df..345b3aa8 100644 --- a/libmproxy/protocol/http.py +++ b/libmproxy/protocol/http.py @@ -40,7 +40,7 @@ class _StreamingHttpLayer(_HttpLayer): def read_response_body(self, headers, request_method, response_code, max_chunk_size=None): raise NotImplementedError() - yield "this is a generator" + yield "this is a generator" # pragma: no cover def send_response_headers(self, response): raise NotImplementedError |