Whitespace normalization.

This commit is contained in:
Tim Peters 2001-10-30 05:56:40 +00:00
parent 003047a5f2
commit 1633a2e345
4 changed files with 5 additions and 5 deletions

View file

@ -226,7 +226,7 @@ class IMAP4:
while bytes > 0:
sent = self.sock.send(data)
if sent == bytes:
break # avoid copy
break # avoid copy
data = data[sent:]
bytes = bytes - sent