Browse Source

wxGUI: trac https://trac.osgeo.org/grass/ticket/280 (wxGUI doesn't handle removing maps)
error message in unicode
(merge from devbr6, https://trac.osgeo.org/grass/changeset/33255)


git-svn-id: https://svn.osgeo.org/grass/grass/trunk@33256 15284696-431f-4ddb-bdfa-cd5b030d7da7

Martin Landa 16 years ago
parent
commit
8a77891b4a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gui/wxpython/gui_modules/gcmd.py

+ 1 - 1
gui/wxpython/gui_modules/gcmd.py

@@ -448,7 +448,7 @@ class Command:
 
 
         for type, msg in self.__ProcessStdErr():
         for type, msg in self.__ProcessStdErr():
             if type == 'ERROR':
             if type == 'ERROR':
-                return msg
+                return unicode(msg, "utf-8")
 
 
         return ''
         return ''