From 2eff14d3333073b39082caa798c2d43f5d8c28e4 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 26 May 2014 15:10:42 -0700 Subject: [PATCH] fix typo in variable name (closes #21586) --- Doc/howto/sockets.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/howto/sockets.rst b/Doc/howto/sockets.rst index 0a7fcf5c0c..f8ac34850b 100644 --- a/Doc/howto/sockets.rst +++ b/Doc/howto/sockets.rst @@ -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) -- 2.50.1