We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c37a9ab commit 155a1f6Copy full SHA for 155a1f6
src/hypercorn/app_wrappers.py
@@ -99,7 +99,7 @@ def start_response(
99
raw, _ = status.split(" ", 1)
100
status_code = int(raw)
101
headers = [
102
- (name.lower().encode("ascii"), value.encode("ascii"))
+ (name.lower().encode("latin-1"), value.encode("latin-1"))
103
for name, value in response_headers
104
]
105
response_started = True
0 commit comments