diff options
| author | Simon Charette <charette.s@gmail.com> | 2014-10-15 16:35:54 -0400 |
|---|---|---|
| committer | Simon Charette <charette.s@gmail.com> | 2014-10-15 16:36:11 -0400 |
| commit | f6c208d95c1b8b0450f45f6589a794392dbd2541 (patch) | |
| tree | 23b82f6fb8cc616e478f4950e4503f9093b87f48 | |
| parent | a6a8268d1974778d93e112c739b4cf0564b7e043 (diff) | |
Fixed a flake8 warning.
| -rw-r--r-- | tests/mail/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mail/tests.py b/tests/mail/tests.py index ccfdc6c669..e510cf88f6 100644 --- a/tests/mail/tests.py +++ b/tests/mail/tests.py @@ -1058,7 +1058,7 @@ class SMTPBackendTests(BaseEmailBackendTests, SimpleTestCase): msg = None for i, m in enumerate(smtp_messages): if m[:4] == 'data': - msg = smtp_messages[i+1] + msg = smtp_messages[i + 1] break self.assertTrue(msg) |
