Skip to content

Commit

Permalink
[processing] syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Aug 22, 2017
1 parent ad44a50 commit ce14633
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/saga/SagaAlgorithm.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ def defineCharacteristicsFromFile(self):
hasRaster = False hasRaster = False
hasHardcodedResampling = False hasHardcodedResampling = False
for param in self.parameters: for param in self.parameters:
if isinstance(param, ParameterRaster) or if (isinstance(param, ParameterRaster) or
(isinstance(param, ParameterMultipleInput) (isinstance(param, ParameterMultipleInput)
and param.type == ParameterMultipleInput.TYPE_RASTER): and param.type == ParameterMultipleInput.TYPE_RASTER)):
hasRaster = True hasRaster = True
break; break;


Expand Down

0 comments on commit ce14633

Please sign in to comment.