Commit 7841a612 authored by Denis Bilenko's avatar Denis Bilenko

pywsgi: fix typo in error message

--HG--
extra : transplant_source : %19%E0%8F%CD%EE%1C%18%03%9DJ%B9%D5%29%C5%28%B14%9F%EC%DE
parent 669fb2e2
...@@ -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