Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #1669 from gioman/tmp_fix_modeller_saga
fix modeller with saga tools
  • Loading branch information
alexbruy committed Oct 31, 2014
2 parents d99d2fd + 9024bad commit 6070627
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions python/plugins/processing/algs/saga/SagaAlgorithm.py
Expand Up @@ -246,14 +246,14 @@ def processAlgorithm(self, progress):

# Do not export is the output is not a final output
# of the model
if self.model is not None and optim:
for subalg in self.model.algOutputs:
if out.name in subalg:
if subalg[out.name] is not None:
dontExport = False
break
if dontExport:
continue
#if self.model is not None and optim:
# for subalg in self.model.algOutputs:
# if out.name in subalg:
# if subalg[out.name] is not None:
# dontExport = False
# break
# if dontExport:
# continue

if self.cmdname == 'RGB Composite':
if isWindows() or isMac() or not saga208:
Expand Down

0 comments on commit 6070627

Please sign in to comment.