commit | b9534f4ed5cb8c78468868d2ca44769057084d83 | [log] [tgz] |
---|---|---|
author | R David Murray <rdmurray@bitdance.com> | Thu Mar 07 18:15:13 2013 -0500 |
committer | R David Murray <rdmurray@bitdance.com> | Thu Mar 07 18:15:13 2013 -0500 |
tree | 587c0e879a0ca5291d026e4a5bab322dbff82146 | |
parent | e67c6c545b3b102fb84eb9317d8b83fb2ca2ca56 [diff] [blame] |
PEP8 fixup on previous patch, remove unused import in test_email.
diff --git a/Lib/email/generator.py b/Lib/email/generator.py index cba0382..ab37e94 100644 --- a/Lib/email/generator.py +++ b/Lib/email/generator.py
@@ -129,7 +129,7 @@ self.write(self._NL) laststripped = lines[-1].rstrip('\r\n') self.write(laststripped) - if len(lines[-1])!=len(laststripped): + if len(lines[-1]) != len(laststripped): self.write(self._NL) def _write(self, msg):