Commit c467332b authored by Benjamin Peterson's avatar Benjamin Peterson

fix typo in variable name (closes #21586)

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