Commit 419f1fa9 authored by Benjamin Peterson's avatar Benjamin Peterson

fix typo in variable name (closes #21586)

parent dea46ec9
......@@ -210,7 +210,7 @@ length message::
chunk = self.sock.recv(min(MSGLEN - bytes_recd, 2048))
if chunk == b'':
raise RuntimeError("socket connection broken")
chucks.append(chunk)
chunks.append(chunk)
bytes_recd = bytes_recd + len(chunk)
return b''.join(chunks)
......
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