From 67a651771662511b0d5ad2a678e500c678aefa73 Mon Sep 17 00:00:00 2001 From: Commander1024 Date: Fri, 25 Dec 2020 11:14:54 +0100 Subject: [PATCH] Comment improved. --- django_lostplaces/lostplaces/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_lostplaces/lostplaces/forms.py b/django_lostplaces/lostplaces/forms.py index 59cfccf..9629ff7 100644 --- a/django_lostplaces/lostplaces/forms.py +++ b/django_lostplaces/lostplaces/forms.py @@ -42,7 +42,7 @@ class ExplorerUserChangeForm(UserChangeForm): ''' Hide password hint.''' password = None - ''' Display username, but make it uneditable and not required. ''' + ''' Display username, but display it non-editable and not required. ''' def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.fields['username'].required = False