Commit ce7c679d authored by Taddeüs Kroes's avatar Taddeüs Kroes

Fixed typo

parent 46c3b42c
...@@ -30,8 +30,8 @@ class DeflateFrame(Extension): ...@@ -30,8 +30,8 @@ class DeflateFrame(Extension):
if not isinstance(mwb, int): if not isinstance(mwb, int):
raise ValueError('"max_window_bits" must be an integer') raise ValueError('"max_window_bits" must be an integer')
elif mwb > 32768: elif mwb > 15:
raise ValueError('"max_window_bits" may not be larger than 32768') raise ValueError('"max_window_bits" may not be larger than 15')
if cto is not False and cto is not True: if cto is not False and cto is not True:
raise ValueError('"no_context_takeover" must have no value') raise ValueError('"no_context_takeover" must have no value')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment