[FIX] mrp_repair: typo correction

"Fals" instead of "False"
This commit is contained in:
Nicolas Martinelli 2015-08-12 11:19:42 +02:00
parent f41026631f
commit 8f96a13855
1 changed files with 1 additions and 1 deletions

View File

@ -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())],