[GRASS-SVN] r55616 - grass/branches/releasebranch_6_4/gui/wxpython/modules
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Apr 3 21:24:16 PDT 2013
Author: neteler
Date: 2013-04-03 21:24:16 -0700 (Wed, 03 Apr 2013)
New Revision: 55616
Modified:
grass/branches/releasebranch_6_4/gui/wxpython/modules/mcalc_builder.py
Log:
wxGUI map calculator: fix function insert for int()
Modified: grass/branches/releasebranch_6_4/gui/wxpython/modules/mcalc_builder.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/modules/mcalc_builder.py 2013-04-03 19:36:12 UTC (rev 55615)
+++ grass/branches/releasebranch_6_4/gui/wxpython/modules/mcalc_builder.py 2013-04-04 04:24:16 UTC (rev 55616)
@@ -80,7 +80,7 @@
'if(x,a)':'if( , )',
'if(x,a,b)':'if( , , )',
'if(x,a,b,c)':'if( , , , )',
- 'int(x)':'if()',
+ 'int(x)':'int()',
'isnull(x)':'isnull()',
'log(x)':'log(',
'log(x,b)':'log( , )',
More information about the grass-commit
mailing list