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

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Feb 20 15:33:23 EST 2009


Author: martinl
Date: 2009-02-20 15:33:22 -0500 (Fri, 20 Feb 2009)
New Revision: 35998

Modified:
   grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/goutput.py
Log:
fix trac #501


Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/goutput.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/goutput.py	2009-02-20 20:07:23 UTC (rev 35997)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/goutput.py	2009-02-20 20:33:22 UTC (rev 35998)
@@ -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