Kaydet (Commit) 2eff14d3 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

fix typo in variable name (closes #21586)

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