Skip to content

Commit

Permalink
Merge pull request #2768 from NaturalGIS/processing_fix_gdal_string
Browse files Browse the repository at this point in the history
[processing] fix non-translatable string in GDAL/Aspect
  • Loading branch information
alexbruy committed Feb 9, 2016
2 parents 686ad24 + 3593a3a commit 475911f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/aspect.py
Expand Up @@ -64,7 +64,7 @@ def defineCharacteristics(self):
self.addParameter(ParameterBoolean(self.ZERO_FLAT,
self.tr('Return 0 for flat (instead of -9999)'), False))

self.addOutput(OutputRaster(self.OUTPUT, 'Aspect'))
self.addOutput(OutputRaster(self.OUTPUT, self.tr('Aspect')))

def getConsoleCommands(self):
arguments = ['aspect']
Expand Down

0 comments on commit 475911f

Please sign in to comment.