[FIX] ir.ui.view: avoid infinite loop when applying multiple inheritance inside a single view (use of <data> tag)

bzr revid: chs@openerp.com-20140206130349-19v4ah0lwy87t50o
This commit is contained in:
Christophe Simonis 2014-02-06 14:03:49 +01:00
parent 4a5b4a8c3f
commit 73d675a73d
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ class view(osv.osv):
if isinstance(spec, SKIPPED_ELEMENT_TYPES):
continue
if spec.tag == 'data':
specs += [ c for c in specs_tree ]
specs += [c for c in spec]
continue
node = self.locate_node(source, spec)
if node is not None: