From 30a7736e46106de5591b0f4ea900ec1f1c6c9d49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Thu, 28 Apr 2016 14:25:12 +0200 Subject: [PATCH] sips2: fix name of merchantId (#10758) --- eopayment/sips2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eopayment/sips2.py b/eopayment/sips2.py index 1a99571..f9ba869 100644 --- a/eopayment/sips2.py +++ b/eopayment/sips2.py @@ -75,7 +75,7 @@ class Payment(PaymentCommon): 'required': True, }, { - 'name': 'merchand_id', + 'name': 'merchant_id', 'caption': _('Merchant ID'), 'default': TEST_MERCHANT_ID, 'required': True, @@ -126,7 +126,7 @@ class Payment(PaymentCommon): def get_data(self): data = collections.OrderedDict() - data['merchantId'] = self.merchand_id + data['merchantId'] = self.merchant_id data['keyVersion'] = self.key_version data['normalReturnUrl'] = self.normal_return_url if self.automatic_return_url: