aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2016-05-21 18:35:29 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2016-05-21 18:35:29 +0200
commitf7ce8e219e6f64133ba9f3c56669ace350c2d521 (patch)
tree379a915f4f3e7359c69c7206746c04917e7c837d
parent0cb2e656cd37d97f89e39d1fc6abd0bc39a3d0d2 (diff)
downloadmitmproxy-f7ce8e219e6f64133ba9f3c56669ace350c2d521.tar.gz
mitmproxy-f7ce8e219e6f64133ba9f3c56669ace350c2d521.tar.bz2
mitmproxy-f7ce8e219e6f64133ba9f3c56669ace350c2d521.zip
fix typo
-rw-r--r--mitmproxy/protocol/http2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mitmproxy/protocol/http2.py b/mitmproxy/protocol/http2.py
index c04bd507..81bf5db9 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: