[GRASS-SVN] r34793 - grass/trunk/gui/wxpython

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Dec 8 05:32:22 EST 2008


Author: martinl
Date: 2008-12-08 05:32:22 -0500 (Mon, 08 Dec 2008)
New Revision: 34793

Modified:
   grass/trunk/gui/wxpython/wxgui.py
Log:
wxGUI: About dialog fixed (UTF-8)
	(merge from devbr6, r34792)


Modified: grass/trunk/gui/wxpython/wxgui.py
===================================================================
--- grass/trunk/gui/wxpython/wxgui.py	2008-12-08 10:31:04 UTC (rev 34792)
+++ grass/trunk/gui/wxpython/wxgui.py	2008-12-08 10:32:22 UTC (rev 34793)
@@ -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