[GRASS-SVN] r35999 - grass/trunk/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Feb 20 15:36:39 EST 2009


Author: martinl
Date: 2009-02-20 15:36:39 -0500 (Fri, 20 Feb 2009)
New Revision: 35999

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


Modified: grass/trunk/gui/wxpython/gui_modules/goutput.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/goutput.py	2009-02-20 20:33:22 UTC (rev 35998)
+++ grass/trunk/gui/wxpython/gui_modules/goutput.py	2009-02-20 20:36:39 UTC (rev 35999)
@@ -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