From f551aca200eb2cbc50cfa0f1950d95ddc9ae2285 Mon Sep 17 00:00:00 2001 From: Mathieu Comandon Date: Wed, 13 Jun 2012 13:36:03 +0200 Subject: [PATCH] fix: PaymentResponse arguments does not match signature --- eopayment/sips.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eopayment/sips.py b/eopayment/sips.py index 0ef8f3b..15410ec 100644 --- a/eopayment/sips.py +++ b/eopayment/sips.py @@ -152,7 +152,7 @@ class Payment(PaymentCommon): response_code_msg = CB_BANK_RESPONSE_CODES.get(d.get(RESPONSE_CODE)) response = PaymentResponse( result=response_result, - signed_result=response_result, + signed=response_result, bank_data=d, order_id=d.get(ORDER_ID), transaction_id=d.get(AUTHORISATION_ID),