From 7413241fd1027a05acf62364c1786a7288cda61a Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 25 Jul 2018 17:54:55 +0200 Subject: [PATCH] Default to date in the past --- fints/client.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fints/client.py b/fints/client.py index b4d3705..a1fbcbd 100644 --- a/fints/client.py +++ b/fints/client.py @@ -277,7 +277,7 @@ class FinTS3Client: "IBAN": iban, "BIC": bic, "amount": int(Decimal(amount) * 100), # in cents - "execution_date": datetime.date.today(), + "execution_date": datetime.date(1999, 1, 1), "description": reason, "endtoend_id": endtoend_id, } @@ -306,8 +306,7 @@ class FinTS3Client: ))) resp = dialog.send(self._get_start_sepa_transfer_message( - dialog, account, pain_message, tan_method, tan_description - )) + dialog, account, pain_message, tan_method, tan_description)) logger.debug('Got HKCCS response: {}'.format(resp)) seg = resp._find_segment('HITAN') -- 2.47.2