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

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Dec 15 02:48:53 PST 2015


Author: martinl
Date: 2015-12-15 02:48:53 -0800 (Tue, 15 Dec 2015)
New Revision: 67142

Modified:
   grass/trunk/gui/wxpython/gui_core/ghelp.py
Log:
wxGUI: fix about dialog reporting 64bit platform

Modified: grass/trunk/gui/wxpython/gui_core/ghelp.py
===================================================================
--- grass/trunk/gui/wxpython/gui_core/ghelp.py	2015-12-15 10:32:02 UTC (rev 67141)
+++ grass/trunk/gui/wxpython/gui_core/ghelp.py	2015-12-15 10:48:53 UTC (rev 67142)
@@ -112,7 +112,7 @@
                       flag = wx.ALL | wx.ALIGN_CENTER, border = 20)
         
         infoLabel = 'GRASS GIS %s' % vInfo.get('version', _('unknown version'))
-        if '64' in vInfo.get('build_platform', ''):
+        if 'x86_64' in vInfo.get('build_platform', ''):
             infoLabel += ' (64bit)'
         info = wx.StaticText(parent = infoTxt, id = wx.ID_ANY,
                              label = infoLabel + os.linesep)



More information about the grass-commit mailing list