Commit 8072539f authored by Yoshinori Okuji's avatar Yoshinori Okuji

This is the right fix.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3235 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ac7e2847
......@@ -517,10 +517,10 @@ class XMLMatrix(Folder):
return ()
index = self.index[base_id]
id_tuple = []
extend = id_tuple.extend
append = id_tuple.append
for i in xrange(0, len(index)):
t = index[i]
extend([t.keys()])
append(t.keys())
if len(id_tuple) == 0:
return ()
return cartesianProduct(id_tuple)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment