From c1e32b651896e24877e0e601fd7eb6215dbb916d Mon Sep 17 00:00:00 2001 From: Piers Lauder Date: Thu, 20 May 2004 11:32:35 +0000 Subject: [PATCH] Fixed IMAP4_SSL read bug introduced by patch 956394 --- Lib/imaplib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/imaplib.py b/Lib/imaplib.py index 96fdf834bf..3dd7e07034 100644 --- a/Lib/imaplib.py +++ b/Lib/imaplib.py @@ -1105,7 +1105,7 @@ class IMAP4_SSL(IMAP4): while read < size: data = self.sslobj.read(size-read) read += len(data) - chunks.append(size) + chunks.append(data) return ''.join(chunks) -- 2.50.1