[GRASS-SVN] r33255 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Sep 4 10:42:08 EDT 2008
Author: martinl
Date: 2008-09-04 10:42:07 -0400 (Thu, 04 Sep 2008)
New Revision: 33255
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/gcmd.py
Log:
wxGUI: trac #280 (wxGUI doesn't handle removing maps)
error message in unicode
Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/gcmd.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/gcmd.py 2008-09-04 14:32:26 UTC (rev 33254)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/gcmd.py 2008-09-04 14:42:07 UTC (rev 33255)
@@ -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