Skip to content

Commit 8025b8d

Browse files
committedSep 25, 2017
fix SAGA parameter that fixes modules with ParameterMultipleInput
1 parent 75afe3f commit 8025b8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/saga/SagaAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def defineCharacteristicsFromFile(self):
131131
for param in self.parameters:
132132
if (isinstance(param, ParameterRaster) or
133133
(isinstance(param, ParameterMultipleInput)
134-
and param.type == ParameterMultipleInput.TYPE_RASTER)):
134+
and param.datatype == ParameterMultipleInput.TYPE_RASTER)):
135135
hasRaster = True
136136
break;
137137

0 commit comments

Comments
 (0)
Please sign in to comment.