From f7ce8e219e6f64133ba9f3c56669ace350c2d521 Mon Sep 17 00:00:00 2001 From: Thomas Kriechbaumer Date: Sat, 21 May 2016 18:35:29 +0200 Subject: [PATCH] fix typo --- mitmproxy/protocol/http2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mitmproxy/protocol/http2.py b/mitmproxy/protocol/http2.py index c04bd5072..81bf5db91 100644 --- a/mitmproxy/protocol/http2.py +++ b/mitmproxy/protocol/http2.py @@ -169,7 +169,7 @@ class Http2Layer(Layer): # Some streams might be still sending data to the client. return False elif isinstance(event, events.PushedStreamReceived): - # pushed stream ids should be uniq and not dependent on race conditions + # pushed stream ids should be unique and not dependent on race conditions # only the parent stream id must be looked up first parent_eid = self.server_to_client_stream_ids[event.parent_stream_id] with self.client_conn.h2.lock: