Преглед изворни кода

wxGUI/animation: fix removing wrong files

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@58348 15284696-431f-4ddb-bdfa-cd5b030d7da7
Anna Petrášová пре 11 година
родитељ
комит
c78a200a9d
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      gui/wxpython/animation/utils.py

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

@@ -248,7 +248,7 @@ def HashCmd(cmd):
 
 
 def HashCmds(cmds):
 def HashCmds(cmds):
     """!Returns a hash from list of commands."""
     """!Returns a hash from list of commands."""
-    name = '_'.join([item for sublist in cmds for item in sublist])
+    name = ';'.join([item for sublist in cmds for item in sublist])
     return hashlib.sha1(name).hexdigest()
     return hashlib.sha1(name).hexdigest()