From b62abbd42b592f97bc87c12422a0986518a71710 2016-07-26 12:38:48 From: Marcin Lulek Date: 2016-07-26 12:38:48 Subject: [PATCH] forms: now that AE is open source this is not required --- diff --git a/backend/src/appenlight/forms.py b/backend/src/appenlight/forms.py index 443c54c..c6a1b66 100644 --- a/backend/src/appenlight/forms.py +++ b/backend/src/appenlight/forms.py @@ -253,9 +253,7 @@ class UserRegisterForm(ReactorForm): validators=[email_validator, unique_email_validator, blocked_email_validator, - wtforms.validators.DataRequired()], - description=_("We promise we will not share " - "your email with anyone")) + wtforms.validators.DataRequired()]) first_name = wtforms.HiddenField(_('First Name')) last_name = wtforms.HiddenField(_('Last Name'))