Skip to content

Commit

Permalink
set nodata parameter as optional in GDAL clip by extent
Browse files Browse the repository at this point in the history
  • Loading branch information
Giovanni Manghi authored and rldhont committed Apr 26, 2016
1 parent 34336e1 commit d87747a
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 @@ -64,7 +64,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 d87747a

Please sign in to comment.