[GRASS-SVN] r55618 - grass/trunk/gui/wxpython/modules

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Apr 3 21:25:29 PDT 2013


Author: neteler
Date: 2013-04-03 21:25:29 -0700 (Wed, 03 Apr 2013)
New Revision: 55618

Modified:
   grass/trunk/gui/wxpython/modules/mcalc_builder.py
Log:
wxGUI map calculator: fix function insert for int()

Modified: grass/trunk/gui/wxpython/modules/mcalc_builder.py
===================================================================
--- grass/trunk/gui/wxpython/modules/mcalc_builder.py	2013-04-04 04:25:02 UTC (rev 55617)
+++ grass/trunk/gui/wxpython/modules/mcalc_builder.py	2013-04-04 04:25:29 UTC (rev 55618)
@@ -82,7 +82,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