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

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Sep 4 10:43:44 EDT 2008


Author: martinl
Date: 2008-09-04 10:43:44 -0400 (Thu, 04 Sep 2008)
New Revision: 33256

Modified:
   grass/trunk/gui/wxpython/gui_modules/gcmd.py
Log:
wxGUI: trac #280 (wxGUI doesn't handle removing maps)
error message in unicode
(merge from devbr6, r33255)


Modified: grass/trunk/gui/wxpython/gui_modules/gcmd.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/gcmd.py	2008-09-04 14:42:07 UTC (rev 33255)
+++ grass/trunk/gui/wxpython/gui_modules/gcmd.py	2008-09-04 14:43:44 UTC (rev 33256)
@@ -448,7 +448,7 @@
 
         for type, msg in self.__ProcessStdErr():
             if type == 'ERROR':
-                return msg
+                return unicode(msg, "utf-8")
 
         return ''
     



More information about the grass-commit mailing list