From 7cb11a273e9e38f25f4f8a450c9f93fb693c0c06 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Fri, 4 Feb 2022 08:36:43 +0100 Subject: [PATCH] mollie: fix subject in body (#61417) Subject does not exist in body. --- eopayment/mollie.py | 1 - 1 file changed, 1 deletion(-) diff --git a/eopayment/mollie.py b/eopayment/mollie.py index e6fda58..1e6428b 100644 --- a/eopayment/mollie.py +++ b/eopayment/mollie.py @@ -98,7 +98,6 @@ class Payment(PaymentCommon): metadata['orderid'] = orderid if subject is not None: body['description'] = subject - body['subject'] = subject resp = self.call_endpoint('POST', 'payments', data=body)