[GRASS-SVN] r48459 - grass/branches/releasebranch_6_4/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Sep 25 06:01:48 EDT 2011


Author: martinl
Date: 2011-09-25 03:01:48 -0700 (Sun, 25 Sep 2011)
New Revision: 48459

Modified:
   grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/nviz_mapdisp.py
Log:
wxNviz: use goutput.GetLog()
	(merge r48458 from relbr64)


Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/nviz_mapdisp.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/nviz_mapdisp.py	2011-09-25 10:00:18 UTC (rev 48458)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/nviz_mapdisp.py	2011-09-25 10:01:48 UTC (rev 48459)
@@ -98,8 +98,8 @@
         #
         if self.lmgr:
             self.log = self.lmgr.goutput
-            logerr = self.lmgr.goutput.cmd_stderr
-            logmsg = self.lmgr.goutput.cmd_output
+            logerr = self.lmgr.goutput.GetLog(err = True)
+            logmsg = self.lmgr.goutput.GetLog()
         else:
             self.log = logmsg = sys.stdout
             logerr = sys.stderr



More information about the grass-commit mailing list