Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit bf24860

Browse files
committed
xmlGenerator use provided separator instead of space
PFWScriptGenerator was incorrectly using space to separate parameter path for the `setElementSequence` command. Use the provided separator. Signed-off-by: Kevin Rocard <[email protected]>
1 parent 350529a commit bf24860

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/xmlGenerator/PFWScriptGenerator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def _doCreateConfiguration(self, name):
6060
self._appendCommand("createConfiguration", self._ctx_domain, name)
6161

6262
def _doSetElementSequence(self, paths):
63-
self._appendCommand("setElementSequence", self._ctx_domain, self._ctx_configuration, " ".join(paths))
63+
self._appendCommand("setElementSequence", self._ctx_domain, self._ctx_configuration, *paths)
6464

6565
def _doSetRule(self, rule):
6666
self._appendCommand("setRule", self._ctx_domain, self._ctx_configuration, rule)

0 commit comments

Comments
 (0)