Navigation Menu

Skip to content

Commit

Permalink
[processing] fix TauDEM descriptions parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Aug 30, 2017
1 parent 18706d9 commit 4514c69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/taudem/TauDEMAlgorithm.py
Expand Up @@ -112,7 +112,7 @@ def processAlgorithm(self, progress):
commands.append(param.name)
commands.append(param.value)
elif isinstance(param, ParameterBoolean):
if not param.value:
if param.value:
commands.append(param.name)
elif isinstance(param, ParameterString):
commands.append(param.name)
Expand Down

0 comments on commit 4514c69

Please sign in to comment.