[GRASS-SVN] r67188 - grass/branches/releasebranch_7_0/gui/wxpython/gui_core
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Dec 17 00:11:23 PST 2015
Author: martinl
Date: 2015-12-17 00:11:23 -0800 (Thu, 17 Dec 2015)
New Revision: 67188
Modified:
grass/branches/releasebranch_7_0/gui/wxpython/gui_core/ghelp.py
Log:
wxGUI: fix about dialog reporting 64bit platform
(merge r67142 from trunk)
Modified: grass/branches/releasebranch_7_0/gui/wxpython/gui_core/ghelp.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/gui_core/ghelp.py 2015-12-17 03:43:24 UTC (rev 67187)
+++ grass/branches/releasebranch_7_0/gui/wxpython/gui_core/ghelp.py 2015-12-17 08:11:23 UTC (rev 67188)
@@ -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