diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-08-20 09:54:45 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2015-08-20 10:27:06 +0200 |
commit | 1025c15242b1f9324bf17ceb53224c84e026b3dc (patch) | |
tree | 432bddb11f27fce2b1071badfabcd4b1595b138a /netlib | |
parent | 9920de1e153d4a85bbc4fa1dfd8fe5db45d56ab3 (diff) | |
download | mitmproxy-1025c15242b1f9324bf17ceb53224c84e026b3dc.tar.gz mitmproxy-1025c15242b1f9324bf17ceb53224c84e026b3dc.tar.bz2 mitmproxy-1025c15242b1f9324bf17ceb53224c84e026b3dc.zip |
fix typo
Diffstat (limited to 'netlib')
-rw-r--r-- | netlib/http/http2/frame.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/http/http2/frame.py b/netlib/http/http2/frame.py index aa1fbae4..ad00a59a 100644 --- a/netlib/http/http2/frame.py +++ b/netlib/http/http2/frame.py @@ -569,7 +569,7 @@ class WindowUpdateFrame(Frame): def payload_bytes(self): if self.window_size_increment <= 0 or self.window_size_increment >= 2 ** 31: raise ValueError( - 'Window Szie Increment MUST be greater than 0 and less than 2^31.') + 'Window Size Increment MUST be greater than 0 and less than 2^31.') return struct.pack('!L', self.window_size_increment & 0x7FFFFFFF) |