Projet

Général

Profil

0001-sips2-allow-for-values-with-in-them-10952.patch

Frédéric Péters, 17 mai 2016 10:48

Télécharger (800 octets)

Voir les différences:

Subject: [PATCH] sips2: allow for values with = in them (#10952)

 eopayment/sips2.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
eopayment/sips2.py
178 178

  
179 179
    def decode_data(self, data):
180 180
        data = data.split('|')
181
        data = [map(unicode, p.split('=')) for p in data]
181
        data = [map(unicode, p.split('=', 1)) for p in data]
182 182
        return collections.OrderedDict(data)
183 183

  
184 184
    def check_seal(self, data, seal):
185
-