mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Silly typo prevented response header parsing.
This commit is contained in:
parent
014d711bd7
commit
2242be27cf
@ -28,7 +28,7 @@ class Response(object):
|
|||||||
if self.headers_sent:
|
if self.headers_sent:
|
||||||
return
|
return
|
||||||
tosend = [
|
tosend = [
|
||||||
"HTP/1.1 %s\r\n" % self.status,
|
"HTTP/1.1 %s\r\n" % self.status,
|
||||||
"Server: %s\r\n" % self.version,
|
"Server: %s\r\n" % self.version,
|
||||||
"Date: %s\r\n" % http_date(),
|
"Date: %s\r\n" % http_date(),
|
||||||
"Connection: close\r\n"
|
"Connection: close\r\n"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user