add missing request argument

This commit is contained in:
Thomas Steen Rasmussen 2018-01-07 17:36:44 +01:00
parent f8379e2fda
commit c676abd5cf

View file

@ -447,7 +447,7 @@ class EpayCallbackView(SingleObjectMixin, View):
txnid=query.get('txnid'), txnid=query.get('txnid'),
) )
### and mark order as paid (this will create tickets) ### and mark order as paid (this will create tickets)
order.mark_as_paid() order.mark_as_paid(request)
else: else:
logger.error("valid epay callback with wrong amount detected") logger.error("valid epay callback with wrong amount detected")
else: else: