Skip to content

Commit

Permalink
Merge branch 'bmwant/update-docs-1' of github.com:bmwant/h2 into bmwa…
Browse files Browse the repository at this point in the history
…nt/update-docs-1
  • Loading branch information
bmwant committed Aug 20, 2024
2 parents c7d1cf1 + 9263210 commit b255543
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/asyncio/wsgi-server.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ def readlines(self, hint=None):
Called by the WSGI application to read several lines of data.
"""
data = self.read(hint)
lines = data.splitlines(True)
lines = data.splitlines(keepends=True)
return lines

def start_response(self, status, response_headers, exc_info=None):
Expand Down

0 comments on commit b255543

Please sign in to comment.