From 9564a555f99ffb30f2f71846c3eb32da1451df3a Mon Sep 17 00:00:00 2001 From: Valentin Deniaud Date: Tue, 19 May 2020 11:34:22 +0200 Subject: [PATCH 3/4] sips: explicit binpath required parameter (#43030) --- eopayment/sips.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eopayment/sips.py b/eopayment/sips.py index c7ac619..8a66a99 100644 --- a/eopayment/sips.py +++ b/eopayment/sips.py @@ -116,14 +116,14 @@ class Payment(PaymentCommon): 'parameters': [ {'name': 'merchand_id'}, {'name': 'merchant_country', }, - {'name': 'currency_code', } + {'name': 'currency_code', }, + {'name': BINPATH, 'required': True} ], } def __init__(self, options, logger=None): super(Payment, self).__init__(options, logger=logger) self.options = options - self.binpath = self.options.pop(BINPATH) self.logger.debug('initializing sips payment class with %s' % options) def execute(self, executable, params): -- 2.20.1