Silly typo prevented response header parsing.

This commit is contained in:
Paul J. Davis 2010-03-23 15:10:52 -04:00
parent 014d711bd7
commit 2242be27cf

View File

@ -28,7 +28,7 @@ class Response(object):
if self.headers_sent:
return
tosend = [
"HTP/1.1 %s\r\n" % self.status,
"HTTP/1.1 %s\r\n" % self.status,
"Server: %s\r\n" % self.version,
"Date: %s\r\n" % http_date(),
"Connection: close\r\n"