Skip to content

Commit c28f821

Browse files
anderskfelixxm
authored andcommitted
Fixed broken link in django/core/handlers/asgi.py comment.
1 parent d8f0939 commit c28f821

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

django/core/handlers/asgi.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@ async def send_response(self, response, send):
326326
if response.streaming:
327327
# - Consume via `__aiter__` and not `streaming_content` directly, to
328328
# allow mapping of a sync iterator.
329-
# - Use aclosing() when consuming aiter.
330-
# See https://github.com/python/cpython/commit/6e8dcda
329+
# - Use aclosing() when consuming aiter. See
330+
# https://github.com/python/cpython/commit/6e8dcdaaa49d4313bf9fab9f9923ca5828fbb10e
331331
async with aclosing(aiter(response)) as content:
332332
async for part in content:
333333
for chunk, _ in self.chunk_bytes(part):

0 commit comments

Comments
 (0)