wrong identifier: frags -> fargs

bzr revid: olt@tinyerp.com-20081215114657-7do9gloamn3esv9y
This commit is contained in:
Olivier Laurent 2008-12-15 12:46:57 +01:00
parent b99c9646c3
commit 4297d5a743
1 changed files with 1 additions and 1 deletions

View File

@ -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