From ae609803ee8ed72a2bdcc3d031ad9f4329faacda Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Tue, 29 May 2012 14:52:25 +0200 Subject: [PATCH] sips: remove logger parameter for .request() --- eopayment/sips.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eopayment/sips.py b/eopayment/sips.py index a24fc3f..5f303fb 100644 --- a/eopayment/sips.py +++ b/eopayment/sips.py @@ -110,7 +110,7 @@ class Payment(PaymentCommon): params.update(self.options.get(PARAMS, {})) return params - def request(self, amount, email=None, next_url=None, logger=LOGGER): + def request(self, amount, email=None, next_url=None): params = self.get_request_params() transaction_id = self.transaction_id(6, string.digits, 'sips', params[MERCHANT_ID])