From 8f96a13855ddf271ae705da42e1ce1dec9db0b47 Mon Sep 17 00:00:00 2001 From: Nicolas Martinelli Date: Wed, 12 Aug 2015 11:19:42 +0200 Subject: [PATCH] [FIX] mrp_repair: typo correction "Fals" instead of "False" --- addons/mrp_repair/wizard/make_invoice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mrp_repair/wizard/make_invoice.py b/addons/mrp_repair/wizard/make_invoice.py index a6e93aca064..5859e6b69a3 100644 --- a/addons/mrp_repair/wizard/make_invoice.py +++ b/addons/mrp_repair/wizard/make_invoice.py @@ -57,7 +57,7 @@ class make_invoice(osv.osv_memory): form_res = mod_obj.get_object_reference(cr, uid, 'account', 'invoice_form') form_id = form_res and form_res[1] or False tree_res = mod_obj.get_object_reference(cr, uid, 'account', 'invoice_tree') - tree_id = tree_res and tree_res[1] or Fals + tree_id = tree_res and tree_res[1] or False return { 'domain': [('id','in', newinv.values())],