[FIX] Deep copy

bzr revid: stephane@tinyerp.com-20090126185029-uy0i1w17scejq64s
This commit is contained in:
Stephane Wirtel 2009-01-26 19:50:29 +01:00
parent 264fb04db7
commit 535d1ced05
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ class interface(netsvc.Service):
if result_def['type'] == 'action':
res['action'] = result_def['action'](self, cr, uid, data, context)
elif result_def['type'] == 'form':
fields = copy.copy(result_def['fields'])
fields = copy.deepcopy(result_def['fields'])
arch = copy.copy(result_def['arch'])
button_list = copy.copy(result_def['state'])