diff --git a/colab/accounts/forms.py b/colab/accounts/forms.py index bc5f402..254d0e6 100644 --- a/colab/accounts/forms.py +++ b/colab/accounts/forms.py @@ -54,7 +54,7 @@ class UserCreationForm(UserForm): username = self.cleaned_data['username'] username = username.strip() if not username: - raise forms.ValidationError(_('This field should not be blank.')) + raise forms.ValidationError(_('This field cannot be blank.')) return username class Meta: -- libgit2 0.21.2