summaryrefslogtreecommitdiffstats
path: root/Lib/imaplib.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/imaplib.py')
-rw-r--r--Lib/imaplib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imaplib.py b/Lib/imaplib.py
index 96fdf83..3dd7e07 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)