[GRASS-SVN] r37625 - grass/branches/develbranch_6/gui/wxpython/gui_modules

svn_grass at osgeo.org svn_grass at osgeo.org
Sat May 30 12:25:09 EDT 2009


Author: martinl
Date: 2009-05-30 12:25:09 -0400 (Sat, 30 May 2009)
New Revision: 37625

Modified:
   grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py
Log:
wxGUI: fix locales


Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py	2009-05-30 16:20:25 UTC (rev 37624)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/menuform.py	2009-05-30 16:25:09 UTC (rev 37625)
@@ -1602,7 +1602,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