Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing][gdal] Fix parsing of creation options for Roughness alg
(cherry picked from commit e11b7f0)
  • Loading branch information
agiudiceandrea authored and nyalldawson committed Mar 19, 2021
1 parent be8401d commit 2db1e5d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/plugins/processing/algs/gdal/roughness.py
Expand Up @@ -108,7 +108,6 @@ def getConsoleCommands(self, parameters, context, feedback, executing=True):

options = self.parameterAsString(parameters, self.OPTIONS, context)
if options:
arguments.append('-co')
arguments.append(options)
arguments.extend(GdalUtils.parseCreationOptions(options))

return [self.commandName(), GdalUtils.escapeAndJoin(arguments)]

0 comments on commit 2db1e5d

Please sign in to comment.