[GRASS-SVN] r57692 - grass/branches/develbranch_6/gui/wxpython/nviz

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Sep 14 20:24:36 PDT 2013


Author: annakrat
Date: 2013-09-14 20:24:36 -0700 (Sat, 14 Sep 2013)
New Revision: 57692

Modified:
   grass/branches/develbranch_6/gui/wxpython/nviz/tools.py
Log:
wxNviz: fix string formatting

Modified: grass/branches/develbranch_6/gui/wxpython/nviz/tools.py
===================================================================
--- grass/branches/develbranch_6/gui/wxpython/nviz/tools.py	2013-09-15 03:23:11 UTC (rev 57691)
+++ grass/branches/develbranch_6/gui/wxpython/nviz/tools.py	2013-09-15 03:24:36 UTC (rev 57692)
@@ -3737,7 +3737,7 @@
             if sel < 0 or sel >= list.GetCount() - 1:
                 item = list.Append(item = "%s %s" % (_("Slice parallel to"), axis))
             else:
-                list.Insert(item = "%s" % (_("Slice parallel to"), axis),
+                list.Insert(item = "%s %s" % (_("Slice parallel to"), axis),
                             pos = sel+1) # append
                 item = sel + 1
         



More information about the grass-commit mailing list