Commit d6c5a286 authored by Denis Bilenko's avatar Denis Bilenko

pywsgi: fix typo in error message

parent 47b7916e
...@@ -207,7 +207,7 @@ class WSGIHandler(object): ...@@ -207,7 +207,7 @@ class WSGIHandler(object):
return return
self.request_version = "HTTP/0.9" self.request_version = "HTTP/0.9"
else: else:
self.log_error('Invalid GET method: %r', raw_requestline) self.log_error('Invalid HTTP method: %r', raw_requestline)
return return
self.headers = self.MessageClass(self.rfile, 0) self.headers = self.MessageClass(self.rfile, 0)
......
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