Fixed Spelling mistake

lp bug: https://launchpad.net/bugs/483527 fixed

bzr revid: hda@tinyerp.com-20091116113325-nnkev88xwn87l702
This commit is contained in:
Sebastien LANGE 2009-11-16 17:03:25 +05:30 committed by HDA (OpenERP)
parent f585ebfa91
commit b6577e3e5a
1 changed files with 1 additions and 1 deletions

View File

@ -1632,7 +1632,7 @@ class orm_memory(orm_template):
# get the default values from the context
for key in context or {}:
if key.startswith('default_') and (key[8:] in fieds_list):
if key.startswith('default_') and (key[8:] in fields_list):
value[key[8:]] = context[key]
return value