[GRASS-SVN] r34792 - grass/branches/develbranch_6/gui/wxpython
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Dec 8 05:31:04 EST 2008
Author: martinl
Date: 2008-12-08 05:31:04 -0500 (Mon, 08 Dec 2008)
New Revision: 34792
Modified:
grass/branches/develbranch_6/gui/wxpython/wxgui.py
Log:
wxGUI: About dialog fixed (UTF-8)
Modified: grass/branches/develbranch_6/gui/wxpython/wxgui.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/wxgui.py 2008-12-08 10:01:21 UTC (rev 34791)
+++ grass/branches/develbranch_6/gui/wxpython/wxgui.py 2008-12-08 10:31:04 UTC (rev 34792)
@@ -514,7 +514,7 @@
licenceFile.close()
# credits
authorsFile = open(os.path.join(os.getenv("GISBASE"), "AUTHORS"), 'r')
- info.SetDevelopers([''.join(authorsFile.readlines())])
+ info.SetDevelopers([unicode(''.join(authorsFile.readlines()), "utf-8")])
authorsFile.close()
wx.AboutBox(info)
More information about the grass-commit
mailing list