diff options
| author | Simon Charette <charette.s@gmail.com> | 2014-10-15 16:35:54 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-10-20 13:17:00 -0400 |
| commit | 117e97061093665a50bf35139e25e82da0afdf32 (patch) | |
| tree | 11279df187da0f0648867fa897d5a3ec4a9f65f9 | |
| parent | 3f3bed8fb9109783aaa15a700a811255b8640cea (diff) | |
[1.7.x] Fixed a flake8 warning.
Backport of f6c208d95c from master
| -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 169f9b8fbb..62c209fb0a 100644 --- a/tests/mail/tests.py +++ b/tests/mail/tests.py @@ -1004,7 +1004,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) |
