summaryrefslogtreecommitdiffstats
path: root/Lib/imaplib.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-10-30 05:56:40 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-10-30 05:56:40 (GMT)
commit1633a2e3452b40d0e9bb1f15ab16cd6b90f15a19 (patch)
tree0575e38da29c8d788fe38568886b11cb19d6eb99 /Lib/imaplib.py
parent003047a5f2e1566f70dc2f001c0f43e8059c02e3 (diff)
downloadcpython-1633a2e3452b40d0e9bb1f15ab16cd6b90f15a19.zip
cpython-1633a2e3452b40d0e9bb1f15ab16cd6b90f15a19.tar.gz
cpython-1633a2e3452b40d0e9bb1f15ab16cd6b90f15a19.tar.bz2
Whitespace normalization.
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 813b67c..cbcf107 100644
--- a/Lib/imaplib.py
+++ b/Lib/imaplib.py
@@ -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