From b96a95e6ec56edf02ee71f2ae3cf0351940cc262 Mon Sep 17 00:00:00 2001 From: Serghei Mihai Date: Wed, 20 Apr 2016 17:10:52 +0200 Subject: [PATCH] systempayv2. fix signature logging (#10723) --- eopayment/systempayv2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eopayment/systempayv2.py b/eopayment/systempayv2.py index bb1412a..07c360a 100644 --- a/eopayment/systempayv2.py +++ b/eopayment/systempayv2.py @@ -409,5 +409,5 @@ class Payment(PaymentCommon): signed_data = '%s+%s' % (signed_data, secret) self.logger.debug(u'generating signature on «%s»' % signed_data) sign = hashlib.sha1(signed_data).hexdigest() - self.logger.debug('signature «%s»' % sign) + self.logger.debug(u'signature «%s»' % sign) return sign -- 2.8.1