From 57416103c3307758e12cb79aa735c2e314396e07 Mon Sep 17 00:00:00 2001 From: Felix Rindt Date: Mon, 7 May 2018 11:35:08 +0200 Subject: [PATCH] change email help text --- src/pretix/presale/forms/checkout.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pretix/presale/forms/checkout.py b/src/pretix/presale/forms/checkout.py index a597b8fce..882c769c0 100644 --- a/src/pretix/presale/forms/checkout.py +++ b/src/pretix/presale/forms/checkout.py @@ -23,8 +23,7 @@ class ContactForm(forms.Form): required_css_class = 'required' email = forms.EmailField(label=_('E-mail'), help_text=_('Make sure to enter a valid email address. We will send you an order ' - 'confirmation including a link that you need in case you want to make ' - 'modifications to your order or download your ticket later.'), + 'confirmation including a link that you need to access your order later.'), validators=[EmailBlacklistValidator()], )