[GRASS-SVN] r54991 - grass/trunk/gui/wxpython/wxplot
svn_grass at osgeo.org
svn_grass at osgeo.org
Sat Feb 9 09:24:10 PST 2013
Author: annakrat
Date: 2013-02-09 09:24:10 -0800 (Sat, 09 Feb 2013)
New Revision: 54991
Modified:
grass/trunk/gui/wxpython/wxplot/histogram.py
Log:
wxGUI: fix histogram tool statistics
Modified: grass/trunk/gui/wxpython/wxplot/histogram.py
===================================================================
--- grass/trunk/gui/wxpython/wxplot/histogram.py 2013-02-09 13:43:11 UTC (rev 54990)
+++ grass/trunk/gui/wxpython/wxplot/histogram.py 2013-02-09 17:24:10 UTC (rev 54991)
@@ -222,7 +222,7 @@
title = _('Statistics for Map(s) Histogrammed')
for rast in self.rasterList:
- ret = grass.read_command('r.univar', map = r, flags = 'e', quiet = True)
+ ret = grass.read_command('r.univar', map = rast, flags = 'e', quiet = True)
stats = _('Statistics for raster map <%s>') % rast + ':\n%s\n' % ret
message.append(stats)
More information about the grass-commit
mailing list