summaryrefslogtreecommitdiff
path: root/postgresqleu/adyen/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'postgresqleu/adyen/util.py')
-rw-r--r--postgresqleu/adyen/util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/postgresqleu/adyen/util.py b/postgresqleu/adyen/util.py
index af72c0c0..3cc981d9 100644
--- a/postgresqleu/adyen/util.py
+++ b/postgresqleu/adyen/util.py
@@ -208,7 +208,7 @@ def process_refund(notification):
manager.complete_refund(
invoicerefundid,
refund.refund_amount,
- 0, # we don't know the fee, it'll be generically booked
+ 0, # we don't know the fee, it'll be generically booked
settings.ACCOUNTING_ADYEN_REFUNDS_ACCOUNT,
settings.ACCOUNTING_ADYEN_FEE_ACCOUNT,
urls,
@@ -394,7 +394,7 @@ class AdyenAPI(object):
apiparam = {
'merchantAccount': settings.ADYEN_MERCHANTACCOUNT,
'modificationAmount': {
- 'value': int(amount * 100), # "minor units", so cents!
+ 'value': int(amount * 100), # "minor units", so cents!
'currency': settings.CURRENCY_ISO,
},
'originalReference': transreference,