From 4297d5a743766328d9de02df8a6b20c6508bf7f7 Mon Sep 17 00:00:00 2001 From: Olivier Laurent Date: Mon, 15 Dec 2008 12:46:57 +0100 Subject: [PATCH] wrong identifier: frags -> fargs bzr revid: olt@tinyerp.com-20081215114657-7do9gloamn3esv9y --- addons/account/account_move_line.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/account/account_move_line.py b/addons/account/account_move_line.py index 18c9930b244..ef63c5e6890 100644 --- a/addons/account/account_move_line.py +++ b/addons/account/account_move_line.py @@ -273,7 +273,7 @@ class account_move_line(osv.osv): while i < len(args): fargs = args[i][0].split('.', 1) if len(fargs) > 1: - args[i] = (frags[0], 'in', invoice_obj.search(cursor, user, + args[i] = (fargs[0], 'in', invoice_obj.search(cursor, user, [(fargs[1], args[i][1], args[i][2])])) i += 1 continue