[GRASS-SVN] r42553 -
grass/branches/develbranch_6/gui/wxpython/gui_modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Jun 13 05:14:23 EDT 2010
Author: martinl
Date: 2010-06-13 15:32:33 +0000 (Sun, 13 Jun 2010)
New Revision: 42553
Modified:
grass/branches/develbranch_6/gui/wxpython/gui_modules/globalvar.py
Log:
fix r42552, check for min wx version
Modified: grass/branches/develbranch_6/gui/wxpython/gui_modules/globalvar.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/gui_modules/globalvar.py 2010-06-13 15:31:00 UTC (rev 42552)
+++ grass/branches/develbranch_6/gui/wxpython/gui_modules/globalvar.py 2010-06-13 15:32:33 UTC (rev 42553)
@@ -36,7 +36,7 @@
def CheckWxVersion(version = [2, 8, 11, 0]):
"""!Check wx version"""
ver = wx.version().split(' ')[0]
- if map(int, ver.split('.')) <= version:
+ if map(int, ver.split('.')) < version:
return False
return True
More information about the grass-commit
mailing list