summaryrefslogtreecommitdiff
path: root/django/contrib/admin/forms.py
diff options
context:
space:
mode:
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'