[FIX] view_id should be a scalar

bzr revid: xmo@openerp.com-20110630064831-ibfsljiwik52huj6
This commit is contained in:
Xavier Morel 2011-06-30 08:48:31 +02:00
parent fe98d57143
commit 60842d0f06
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ class res_config_configurable(osv.osv_memory):
return {
'view_mode': action.view_mode,
'view_type': action.view_type,
'view_id': action.view_id and [action.view_id.id] or False,
'view_id': action.view_id and action.view_id.id or False,
'res_model': action.res_model,
'type': action.type,
'target': action.target,