[GRASS-SVN] r69491 -	grass/branches/releasebranch_7_2/gui/wxpython/animation
    svn_grass at osgeo.org 
    svn_grass at osgeo.org
       
    Wed Sep 14 20:54:19 PDT 2016
    
    
  
Author: annakrat
Date: 2016-09-14 20:54:19 -0700 (Wed, 14 Sep 2016)
New Revision: 69491
Modified:
   grass/branches/releasebranch_7_2/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_2/gui/wxpython/animation/g.gui.animation.py
===================================================================
--- grass/branches/releasebranch_7_2/gui/wxpython/animation/g.gui.animation.py	2016-09-15 03:52:35 UTC (rev 69490)
+++ grass/branches/releasebranch_7_2/gui/wxpython/animation/g.gui.animation.py	2016-09-15 03:54:19 UTC (rev 69491)
@@ -109,7 +109,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