Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
set nodata parameter as optional in GDAL clip by extent
  • Loading branch information
Giovanni Manghi committed Apr 25, 2016
1 parent 181c0c4 commit fb59212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/ClipByExtent.py
Expand Up @@ -73,7 +73,7 @@ def defineCharacteristics(self):
self.INPUT, self.tr('Input layer'), False))
self.addParameter(ParameterString(self.NO_DATA,
self.tr("Nodata value, leave blank to take the nodata value from input"),
''))
'', optional=True))
self.addParameter(ParameterExtent(self.PROJWIN, self.tr('Clipping extent')))

params = []
Expand Down

0 comments on commit fb59212

Please sign in to comment.