[GRASS-SVN] r54856 - grass/branches/develbranch_6/gui/wxpython/dbmgr

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Feb 3 02:00:23 PST 2013


Author: martinl
Date: 2013-02-03 02:00:22 -0800 (Sun, 03 Feb 2013)
New Revision: 54856

Modified:
   grass/branches/develbranch_6/gui/wxpython/dbmgr/vinfo.py
Log:
wxGUI/dbmgr: fix recoding issue (assume utf-8)


Modified: grass/branches/develbranch_6/gui/wxpython/dbmgr/vinfo.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/dbmgr/vinfo.py	2013-02-03 09:39:53 UTC (rev 54855)
+++ grass/branches/develbranch_6/gui/wxpython/dbmgr/vinfo.py	2013-02-03 10:00:22 UTC (rev 54856)
@@ -34,7 +34,7 @@
     if not enc and 'GRASS_DB_ENCODING' in os.environ:
         enc = os.environ['GRASS_DB_ENCODING']
     else:
-        enc = 'ascii'
+        enc = 'utf-8'
     
     return unicode(value, enc, errors = 'replace')
 



More information about the grass-commit mailing list