Skip to content
Snippets Groups Projects
Commit e080072c authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

http/__init__.py: Remove extraneous argument


pylint complained, I fixed it, and unfortunately pushed too early.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent 1b8e72f3
No related branches found
No related tags found
No related merge requests found
......@@ -1007,7 +1007,7 @@ class HttpMessageReader(object):
"""
# Parse headers
self.header_buffer.seek(0, 0)
self.msg.headers = ParseHeaders(self.header_buffer, 0)
self.msg.headers = ParseHeaders(self.header_buffer)
self.peer_will_close = self._WillPeerCloseConnection()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment