Fix AttributeError in paypal module

This commit is contained in:
Raphael Michel
2018-10-02 17:12:26 +02:00
parent f848561d25
commit 0787adcb8e

View File

@@ -245,7 +245,7 @@ class Paypal(BasePaymentProvider):
if payment.state != 'approved':
payment_obj.state = OrderPayment.PAYMENT_STATE_FAILED
payment_obj.save()
payment.order.log_action('pretix.event.order.payment.failed', {
payment_obj.order.log_action('pretix.event.order.payment.failed', {
'local_id': payment.local_id,
'provider': payment.provider,
})