We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 580124d commit 977c794Copy full SHA for 977c794
src/sextante/r/RAlgorithm.py
@@ -124,7 +124,7 @@ def processParameterLine(self,line):
124
elif tokens[1].lower().strip().startswith("selection"):
125
options = tokens[1].strip()[len("selection"):].split(";")
126
param = ParameterSelection(tokens[0], desc, options);
127
- elif tokens[1].lower().strip() == "boolean":
+ elif tokens[1].lower().strip().startswith("boolean"):
128
default = tokens[1].strip()[len("boolean")+1:]
129
param = ParameterBoolean(tokens[0], desc, default)
130
elif tokens[1].lower().strip().startswith("number"):
0 commit comments