[GRASS-SVN] r36000 - grass/branches/develbranch_6/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Feb 20 15:38:46 EST 2009


Author: martinl
Date: 2009-02-20 15:38:46 -0500 (Fri, 20 Feb 2009)
New Revision: 36000

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/goutput.py
Log:
fix trac #501
   (merge from relbr64, r35998)


Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/goutput.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/goutput.py	2009-02-20 20:36:39 UTC (rev 35999)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/goutput.py	2009-02-20 20:38:46 UTC (rev 36000)
@@ -632,13 +632,13 @@
                     progressValue = 0
             elif 'GRASS_INFO_MESSAGE' in line:
                 self.type = 'message'
-                self.message = line.split(':', 1)[1].strip()
+                self.message += line.split(':', 1)[1].strip() + '\n'
             elif 'GRASS_INFO_WARNING' in line:
                 self.type = 'warning'
-                self.message = line.split(':', 1)[1].strip()
+                self.message += line.split(':', 1)[1].strip() + '\n'
             elif 'GRASS_INFO_ERROR' in line:
                 self.type = 'error'
-                self.message = line.split(':', 1)[1].strip()
+                self.message += line.split(':', 1)[1].strip() + '\n'
             elif 'GRASS_INFO_END' in line:
                 self.printMessage = True
             elif self.type == '':



More information about the grass-commit mailing list