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

svn_grass at osgeo.org svn_grass at osgeo.org
Sat May 30 12:28:29 EDT 2009


Author: martinl
Date: 2009-05-30 12:28:29 -0400 (Sat, 30 May 2009)
New Revision: 37627

Modified:
   grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/menuform.py
Log:
wxGUI: fix locales
      (merge from devbr6, r37625)


Modified: grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/menuform.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/menuform.py	2009-05-30 16:27:52 UTC (rev 37626)
+++ grass/branches/releasebranch_6_4/gui/wxpython/gui_modules/menuform.py	2009-05-30 16:28:29 UTC (rev 37627)
@@ -1710,7 +1710,7 @@
             cmd = self.task.getCmd( ignoreErrors=ignoreErrors )
         except ValueError, err:
             dlg = wx.MessageDialog(parent=self,
-                                   message=str(err),
+                                   message=unicode(err),
                                    caption=_("Error in %s") % self.task.name,
                                    style=wx.OK | wx.ICON_ERROR | wx.CENTRE)
             dlg.ShowModal()



More information about the grass-commit mailing list