Skip to content
Snippets Groups Projects
Commit 74c10e1e authored by Jorrit Schaap's avatar Jorrit Schaap
Browse files

Task #8887: expand int vector values

parent 0190efd4
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,7 @@ def resourceIndicatorsFromParset( parsetDict ): ...@@ -94,7 +94,7 @@ def resourceIndicatorsFromParset( parsetDict ):
return PyParameterValue(str(value), True).getStringVector() return PyParameterValue(str(value), True).getStringVector()
def intvector(value): def intvector(value):
return PyParameterValue(str(value), True).getIntVector() return PyParameterValue(str(value), True)._expand().getIntVector()
def bool(value): def bool(value):
return PyParameterValue(str(value), True).getBool() return PyParameterValue(str(value), True).getBool()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment