We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 3c8cfd0 commit fbedfaeCopy full SHA for fbedfae
python/plugins/processing/script/ScriptAlgorithm.py
@@ -133,7 +133,7 @@ def processParameterLine(self,line):
133
param = ParameterMultipleInput(tokens[0], desc, ParameterMultipleInput.TYPE_VECTOR_ANY)
134
param.optional = False
135
elif tokens[1].lower().strip().startswith("selection"):
136
- options = tokens[1].strip()[len("selection"):].split(";")
+ options = tokens[1].strip()[len("selection "):].split(";")
137
param = ParameterSelection(tokens[0], desc, options);
138
elif tokens[1].lower().strip().startswith("boolean"):
139
default = tokens[1].strip()[len("boolean")+1:]
0 commit comments