[FIX]product : remove lemda from defaults

bzr revid: mma@tinyerp.com-20121003114208-p6p0xvecuc1vfb0e
This commit is contained in:
Mayur Maheshwari (OpenERP) 2012-10-03 17:12:08 +05:30
parent be42204adf
commit cfb0197236
1 changed files with 1 additions and 1 deletions

View File

@ -520,7 +520,7 @@ class product_template(osv.osv):
}
_defaults = {
'sale_delay': lambda *a: 7,
'sale_delay': 7,
}
product_template()