浏览代码

wxGUI/animation: fix https://trac.osgeo.org/grass/ticket/3752

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@74094 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová 6 年之前
父节点
当前提交
b57adc9aa4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      gui/wxpython/animation/utils.py

+ 1 - 1
gui/wxpython/animation/utils.py

@@ -341,7 +341,7 @@ def layerListToCmdsMatrix(layerList):
         else:
             cmdsForComposition.append([layer.cmd] * count)
 
-    return zip(*cmdsForComposition)
+    return list(zip(*cmdsForComposition))
 
 
 def sampleCmdMatrixAndCreateNames(cmdMatrix, sampledSeries, regions):