[GRASS-SVN] r55617 - grass/branches/develbranch_6/gui/wxpython/modules

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


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

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

Modified: grass/branches/develbranch_6/gui/wxpython/modules/mcalc_builder.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/modules/mcalc_builder.py	2013-04-04 04:24:16 UTC (rev 55616)
+++ grass/branches/develbranch_6/gui/wxpython/modules/mcalc_builder.py	2013-04-04 04:25:02 UTC (rev 55617)
@@ -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