From 8f4f7a5710a40203d01c5d2eba92e3368e422e2b Mon Sep 17 00:00:00 2001 From: sebastien beau Date: Wed, 19 Sep 2012 11:44:46 +0200 Subject: [PATCH] [FIX] crm_claim_rma : fix syntax error --- crm_claim_rma/account_invoice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crm_claim_rma/account_invoice.py b/crm_claim_rma/account_invoice.py index 76022e93..b78317e6 100644 --- a/crm_claim_rma/account_invoice.py +++ b/crm_claim_rma/account_invoice.py @@ -38,7 +38,7 @@ class account_invoice(osv.osv): return fields def _refund_cleanup_lines(self, cr, uid, lines, context=None): - if context is None ; context = {} + if context is None: context = {} new_lines = [] if context.get('claim_line_ids') and lines and 'product_id' in lines[0]:#check if is an invoice_line for claim_line_id in context.get('claim_line_ids'):