From f98a9f188acb2fc5deb33119c8ffb55febf34792 Mon Sep 17 00:00:00 2001 From: sebd <> Date: Fri, 20 May 2005 16:33:53 +0000 Subject: [PATCH] The, hem, bugfix for latest commit (support for several index types per node). --- src/modules/dbxmldatabases.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/dbxmldatabases.py b/src/modules/dbxmldatabases.py index 61e1f2a..7a02005 100644 --- a/src/modules/dbxmldatabases.py +++ b/src/modules/dbxmldatabases.py @@ -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)