From b5e7b7eee311a00d0d300691d1c6cc40161c46e9 Mon Sep 17 00:00:00 2001 From: xmo-odoo <xmo@odoo.com> Date: Mon, 15 May 2017 12:17:46 +0200 Subject: [PATCH] [FIX] P3: mixed whitespace indentation Completely forbidden in Python 3 --- addons/event_sale/models/account_invoice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/event_sale/models/account_invoice.py b/addons/event_sale/models/account_invoice.py index b8f4e309bb4b..df995d576f5b 100644 --- a/addons/event_sale/models/account_invoice.py +++ b/addons/event_sale/models/account_invoice.py @@ -9,7 +9,7 @@ class AccountInvoice(models.Model): @api.multi def action_invoice_paid(self): - """ When an invoice linked to a sales order selling registrations is + """ When an invoice linked to a sales order selling registrations is paid confirm attendees. Attendees should indeed not be confirmed before full payment. """ res = super(AccountInvoice, self).action_invoice_paid() -- GitLab