summaryrefslogtreecommitdiff
path: root/django/contrib/admin/forms.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-03-28 18:33:29 -0400
committerTim Graham <timograham@gmail.com>2016-04-08 09:51:06 -0400
commitdf8d8d4292684d6ffa7474f1e201aed486f02b53 (patch)
treec661bf9b33de5288afe4f63347a2a9c768ef98eb /django/contrib/admin/forms.py
parent2956e2f5e3f63d279f5dae2a995265364d3e6db1 (diff)
Fixed E128 flake8 warnings in django/.
Diffstat (limited to 'django/contrib/admin/forms.py')
-rw-r--r--django/contrib/admin/forms.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/django/contrib/admin/forms.py b/django/contrib/admin/forms.py
index 2e482b9c15..ed71d63e4c 100644
--- a/django/contrib/admin/forms.py
+++ b/django/contrib/admin/forms.py
@@ -10,9 +10,10 @@ class AdminAuthenticationForm(AuthenticationForm):
A custom authentication form used in the admin app.
"""
error_messages = {
- 'invalid_login': _("Please enter the correct %(username)s and password "
- "for a staff account. Note that both fields may be "
- "case-sensitive."),
+ 'invalid_login': _(
+ "Please enter the correct %(username)s and password for a staff "
+ "account. Note that both fields may be case-sensitive."
+ ),
}
required_css_class = 'required'