diff --git a/corehq/apps/registration/forms.py b/corehq/apps/registration/forms.py index 5b3cba7c747d..9fc89039f986 100644 --- a/corehq/apps/registration/forms.py +++ b/corehq/apps/registration/forms.py @@ -594,8 +594,7 @@ def clean_email(self): "this project or has a pending invitation.")) web_user = WebUser.get_by_username(email) if web_user and not web_user.is_active: - raise forms.ValidationError(_("A user with this email address is deactivated. " - "Please reactivate this user first.")) + raise forms.ValidationError(_("A user with this email address is deactivated. ")) return email def clean(self):