Skip to content

Commit

Permalink
fix non-translatable string in Processing GDAL/Aspect
Browse files Browse the repository at this point in the history
  • Loading branch information
Giovanni Manghi committed Feb 8, 2016
1 parent 964ae1f commit 3593a3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/aspect.py
Original file line number Diff line number Diff line change
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 3593a3a

Please sign in to comment.