Skip to content

Commit 4514c69

Browse files
committed
[processing] fix TauDEM descriptions parsing
1 parent 18706d9 commit 4514c69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/algs/taudem/TauDEMAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def processAlgorithm(self, progress):
112112
commands.append(param.name)
113113
commands.append(param.value)
114114
elif isinstance(param, ParameterBoolean):
115-
if not param.value:
115+
if param.value:
116116
commands.append(param.name)
117117
elif isinstance(param, ParameterString):
118118
commands.append(param.name)

0 commit comments

Comments
 (0)