mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
Fix typo in function call
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user