Fixed IMAP4_SSL read bug introduced by patch 956394

This commit is contained in:
Piers Lauder 2004-05-20 11:32:35 +00:00
parent 8f2b24401e
commit c1e32b6518
1 changed files with 1 additions and 1 deletions

View File

@ -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)