Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Processing] Fix advanced parameter handling in OTB algorithms.
  • Loading branch information
radosuav committed Oct 6, 2014
1 parent 6f94e9d commit e66bc84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/otb/OTBAlgorithm.py
Expand Up @@ -148,7 +148,7 @@ def defineCharacteristicsFromFile(self):
try:
if line.startswith("Parameter") or line.startswith("*Parameter"):
if line.startswith("*Parameter"):
param = ParameterFactory.getFromString(line[1:])
param = getParameterFromString(line[1:])
param.isAdvanced = True
else:
param = getParameterFromString(line)
Expand Down

0 comments on commit e66bc84

Please sign in to comment.