From 5e9610eecfd6f5f3afd80eede0b721aa830fea30 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Sun, 17 Nov 2019 19:35:06 +0100 Subject: [PATCH] Fix typo in function call --- src/pretix/control/forms/vouchers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/control/forms/vouchers.py b/src/pretix/control/forms/vouchers.py index 56437d6bc9..e79d19d11e 100644 --- a/src/pretix/control/forms/vouchers.py +++ b/src/pretix/control/forms/vouchers.py @@ -328,7 +328,7 @@ class VoucherBulkForm(VoucherForm): except ValidationError as err: raise ValidationError(_('{value} is not a valid email address.').format(value=e.strip())) from err else: - res.append(self.Recipient(email=e.stripe(), number=1, tag=None, name='')) + res.append(self.Recipient(email=e.strip(), number=1, tag=None, name='')) return res def clean(self):