From cc7894d003c2081dcbacfa6207aa7936548222bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 17 May 2016 10:47:21 +0200 Subject: [PATCH] sips2: allow for values with = in them (#10952) --- eopayment/sips2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eopayment/sips2.py b/eopayment/sips2.py index f9ba869..65437df 100644 --- a/eopayment/sips2.py +++ b/eopayment/sips2.py @@ -178,7 +178,7 @@ class Payment(PaymentCommon): def decode_data(self, data): data = data.split('|') - data = [map(unicode, p.split('=')) for p in data] + data = [map(unicode, p.split('=', 1)) for p in data] return collections.OrderedDict(data) def check_seal(self, data, seal):