Skip to content

Commit

Permalink
[FIX] mrp_repair: typo correction
Browse files Browse the repository at this point in the history
"Fals" instead of "False"
  • Loading branch information
nim-odoo committed Aug 12, 2015
1 parent f410266 commit 8f96a13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/mrp_repair/wizard/make_invoice.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def make_invoices(self, cr, uid, ids, context=None):
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())],
Expand Down

0 comments on commit 8f96a13

Please sign in to comment.