Skip to content

Commit

Permalink
Revert fixes to gdal algorithms, need to investigate further
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Feb 25, 2018
1 parent 703898e commit 25c5d8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/algs/gdal/GdalAlgorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ def helpUrl(self):

def commandName(self):
parameters = {}
for output in self.outputDefinitions():
results[output.name()] = "dummy"
for output in self.outputs:
output.setValue("dummy")
for param in self.parameterDefinitions():
parameters[param.name()] = "1"
name = self.getConsoleCommands(parameters)[0]
Expand Down

0 comments on commit 25c5d8d

Please sign in to comment.