Explorar el Código

Fix: reset tree.is_executing after error

Joseph Brandenburg hace 9 meses
padre
commit
855342c3fe
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      base_definitions.py

+ 2 - 0
base_definitions.py

@@ -64,6 +64,8 @@ class MantisTree(NodeTree):
             self.tree_valid = False
             self.is_executing = False
             raise e
+        finally:
+            self.is_executing = False
 
     
     def display_update(self, context):