From 064502488dadf77d84bd3f73ae6e41d5d8ea7d9b Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Tue, 30 Jul 2024 16:02:59 +0200 Subject: [PATCH] Fix invalid option passing --- .../management/commands/transferwise_fetch_transactions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgresqleu/transferwise/management/commands/transferwise_fetch_transactions.py b/postgresqleu/transferwise/management/commands/transferwise_fetch_transactions.py index 81bcf4e0..ae3a8c66 100644 --- a/postgresqleu/transferwise/management/commands/transferwise_fetch_transactions.py +++ b/postgresqleu/transferwise/management/commands/transferwise_fetch_transactions.py @@ -42,7 +42,7 @@ class Command(BaseCommand): startdate = None for method in InvoicePaymentMethod.objects.filter(active=True, classname='postgresqleu.util.payment.transferwise.Transferwise'): - self.handle_method(method, **options) + self.handle_method(method, startdate=startdate) def handle_method(self, method, startdate): pm = method.get_implementation() -- 2.39.5