sips2: allow for values with = in them (#10952)

This commit is contained in:
Frédéric Péters 2016-05-17 10:47:21 +02:00
parent 8941ab4aeb
commit cc7894d003
1 changed files with 1 additions and 1 deletions

View File

@ -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):