Navigation Menu

Skip to content

Commit

Permalink
fix SAGA parameter that fixes modules with ParameterMultipleInput
Browse files Browse the repository at this point in the history
  • Loading branch information
gioman committed Sep 25, 2017
1 parent 75afe3f commit 8025b8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/saga/SagaAlgorithm.py
Expand Up @@ -131,7 +131,7 @@ def defineCharacteristicsFromFile(self):
for param in self.parameters:
if (isinstance(param, ParameterRaster) or
(isinstance(param, ParameterMultipleInput)
and param.type == ParameterMultipleInput.TYPE_RASTER)):
and param.datatype == ParameterMultipleInput.TYPE_RASTER)):
hasRaster = True
break;

Expand Down

0 comments on commit 8025b8d

Please sign in to comment.