From 463b2c7c24fb4b59013ab39de92155bc6c730e27 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Wed, 1 Apr 2026 16:37:22 +0200 Subject: [PATCH] fix --- src/paypal/rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/paypal/rest.py b/src/paypal/rest.py index d324c4c2a..a5e7ebeee 100644 --- a/src/paypal/rest.py +++ b/src/paypal/rest.py @@ -136,7 +136,7 @@ def get_donations(agreement_id, year): continue assert transaction['amount']['currency'] == 'PLN' transactions.append({ - 'transation_id': transaction['transaction_id'], + 'transaction_id': transaction['transaction_id'], 'timestamp': dt, 'amount': Decimal(transaction['amount']['value']) }) -- 2.20.1