[GRASS-SVN] r57691 - grass/branches/releasebranch_6_4/gui/wxpython/nviz

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Sep 14 20:23:11 PDT 2013


Author: annakrat
Date: 2013-09-14 20:23:11 -0700 (Sat, 14 Sep 2013)
New Revision: 57691

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

Modified: grass/branches/releasebranch_6_4/gui/wxpython/nviz/tools.py
===================================================================
--- grass/branches/releasebranch_6_4/gui/wxpython/nviz/tools.py	2013-09-15 03:20:31 UTC (rev 57690)
+++ grass/branches/releasebranch_6_4/gui/wxpython/nviz/tools.py	2013-09-15 03:23:11 UTC (rev 57691)
@@ -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