Stripe: Fix another statement error

This commit is contained in:
Raphael Michel
2018-04-27 12:19:48 +02:00
parent 97bf958b74
commit 32a89d3895

View File

@@ -278,7 +278,7 @@ class StripeMethod(BasePaymentProvider):
params['statement_descriptor'] = ugettext('{event}-{code}').format(
event=self.event.slug.upper(),
code=order.code
)[:22],
)[:22]
params.update(self.api_kwargs)
charge = stripe.Charge.create(
amount=self._get_amount(order),