[GRASS-SVN] r57140 - grass/trunk/gui/wxpython/gui_core

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Jul 15 03:57:32 PDT 2013


Author: annakrat
Date: 2013-07-15 03:57:32 -0700 (Mon, 15 Jul 2013)
New Revision: 57140

Modified:
   grass/trunk/gui/wxpython/gui_core/ghelp.py
Log:
wxGUI: unicode character for copyright instead of (C)

Modified: grass/trunk/gui/wxpython/gui_core/ghelp.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/ghelp.py	2013-07-15 10:52:00 UTC (rev 57139)
+++ grass/trunk/gui/wxpython/gui_core/ghelp.py	2013-07-15 10:57:32 UTC (rev 57140)
@@ -787,7 +787,7 @@
     info.SetName(prgName)
     info.SetWebSite('http://grass.osgeo.org')
     year = grass.version()['date']
-    info.SetDescription('(C) %(start)s-%(end)s by the GRASS Development Team\n\n' % {'start': startYear, 'end': year} +
+    info.SetDescription('%(c)s %(start)s-%(end)s by the GRASS Development Team\n\n' % {'c': unichr(169), 'start': startYear, 'end': year} +
                         '\n'.join(textwrap.wrap('This program is free software under the GNU General Public License'
                                                 '(>=v2). Read the file COPYING that comes with GRASS for details.', 75)))
     



More information about the grass-commit mailing list