aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc-src/features/responsestreaming.html2
-rw-r--r--libmproxy/protocol/http.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc-src/features/responsestreaming.html b/doc-src/features/responsestreaming.html
index 59847c8f..20785269 100644
--- a/doc-src/features/responsestreaming.html
+++ b/doc-src/features/responsestreaming.html
@@ -40,7 +40,7 @@ Responses that should be tagged for streaming by setting their respective .strea
$!example("examples/stream.py")!$
-In addition, if the .stream attribute is set to callable(), .stream will work as a hook in chunk data processing.
+In addition, if the .stream attribute is callable, .stream will work as a hook in chunk data processing.
$!example("examples/stream_modify.py")!$
diff --git a/libmproxy/protocol/http.py b/libmproxy/protocol/http.py
index fff2b84f..78c4ac80 100644
--- a/libmproxy/protocol/http.py
+++ b/libmproxy/protocol/http.py
@@ -1332,7 +1332,7 @@ class HTTPHandler(ProtocolHandler):
# incrementally:
h = flow.response._assemble_head(preserve_transfer_encoding=True)
self.c.client_conn.send(h)
- for chunk in hasattr(flow.response.stream, "__call__") and \
+ for chunk in callabe(flow.response.stream) and \
flow.response.stream(http.read_http_body_chunked(self.c.server_conn.rfile,
flow.response.headers,
self.c.config.body_size_limit, flow.request.method,