[GRASS-SVN] r69492 - grass/branches/releasebranch_7_0/gui/wxpython/animation

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Sep 14 20:55:06 PDT 2016


Author: annakrat
Date: 2016-09-14 20:55:06 -0700 (Wed, 14 Sep 2016)
New Revision: 69492

Modified:
   grass/branches/releasebranch_7_0/gui/wxpython/animation/g.gui.animation.py
Log:
g.gui.animation: fix typo in formatting string (merge from trunk, r69490)

Modified: grass/branches/releasebranch_7_0/gui/wxpython/animation/g.gui.animation.py
===================================================================
--- grass/branches/releasebranch_7_0/gui/wxpython/animation/g.gui.animation.py	2016-09-15 03:54:19 UTC (rev 69491)
+++ grass/branches/releasebranch_7_0/gui/wxpython/animation/g.gui.animation.py	2016-09-15 03:55:06 UTC (rev 69492)
@@ -105,7 +105,7 @@
         layer = AnimLayer()
         layer.mapType = 'vector'
         layer.name = vect
-        layer.cmd = ['d.vect', 'map={name=}'.format(name=vect.split(',')[0])]
+        layer.cmd = ['d.vect', 'map={name}'.format(name=vect.split(',')[0])]
         layerList.AddLayer(layer)
     if strds:
         layer = AnimLayer()



More information about the grass-commit mailing list