Fix typo in function call

This commit is contained in:
Raphael Michel
2019-11-17 19:35:06 +01:00
parent 1c40351b27
commit 5e9610eecf

View File

@@ -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):