[GRASS-SVN] r40408 - grass/trunk/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Jan 13 01:02:08 EST 2010
Author: glynn
Date: 2010-01-13 01:02:07 -0500 (Wed, 13 Jan 2010)
New Revision: 40408
Modified:
grass/trunk/gui/wxpython/gui_modules/help.py
Log:
Don't convert AUTHORS text to str(); use unicode()
Modified: grass/trunk/gui/wxpython/gui_modules/help.py
===================================================================
--- grass/trunk/gui/wxpython/gui_modules/help.py 2010-01-13 02:08:28 UTC (rev 40407)
+++ grass/trunk/gui/wxpython/gui_modules/help.py 2010-01-13 06:02:07 UTC (rev 40408)
@@ -507,7 +507,7 @@
authors = _('%s file missing') % 'AUTHORS'
authorwin = scrolled.ScrolledPanel(self, id=wx.ID_ANY,
style = wx.TAB_TRAVERSAL|wx.SUNKEN_BORDER)
- authortxt = wx.StaticText(authorwin, id=wx.ID_ANY, label=str(authors))
+ authortxt = wx.StaticText(authorwin, id=wx.ID_ANY, label=authors)
authorwin.SetAutoLayout(1)
authorwin.SetupScrolling()
authorwin.sizer = wx.BoxSizer(wx.VERTICAL)
More information about the grass-commit
mailing list