The, hem, bugfix for latest commit (support for several index types per node).

This commit is contained in:
sebd 2005-05-20 16:33:53 +00:00
parent 9da229d5b7
commit f98a9f188a
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ def __init__():
containerName,
)
):
uri, name, indexes = node.prop("uri"), node.prop("name"), node.content.split(" ")
uri, name, indexes = node.prop("uri"), node.prop("name"), node.content.split()
for index in indexes:
indexSpecification.addIndex(uri, name, index)
container.setIndexSpecification(indexSpecification, updateContext)