add missing request argument

This commit is contained in:
Thomas Steen Rasmussen 2018-01-07 17:36:44 +01:00
parent f8379e2fda
commit c676abd5cf
1 changed files with 1 additions and 1 deletions

View File

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