From c2bfd76ec3678cc28fb6fce6be0ae217b46bcd9e Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Fri, 27 Mar 2015 20:07:35 +0100 Subject: Refs #15779 -- Fixed UserChangeForm regression introduced by 1791a7e75 Thanks Tim Graham for reporting the regression. --- django/contrib/auth/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django') diff --git a/django/contrib/auth/forms.py b/django/contrib/auth/forms.py index 928c4c7988..84fc757e26 100644 --- a/django/contrib/auth/forms.py +++ b/django/contrib/auth/forms.py @@ -98,7 +98,7 @@ class UserChangeForm(forms.ModelForm): password = ReadOnlyPasswordHashField(label=_("Password"), help_text=_("Raw passwords are not stored, so there is no way to see " "this user's password, but you can change the password " - "using this form.")) + "using this form.")) class Meta: model = User -- cgit v1.3