[processing][gdal] Fix parsing of creation options for Roughness alg

This commit is contained in:
Andrea Giudiceandrea 2021-03-15 23:44:20 +01:00 committed by Nyall Dawson
parent 8240788799
commit e11b7f0230

View File

@ -108,7 +108,6 @@ class roughness(GdalAlgorithm):
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)]