Przeglądaj źródła

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 lat temu
rodzic
commit
b57adc9aa4
1 zmienionych plików z 1 dodań i 1 usunięć
  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):