From 18d2e4bd392ab36ce84aaeff44ab7507c9433a99 Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Mon, 16 Oct 2017 11:04:45 +0200 Subject: [PATCH] [core] Node: add missing initialization in constructor --- meshroom/core/graph.py | 1 + 1 file changed, 1 insertion(+) diff --git a/meshroom/core/graph.py b/meshroom/core/graph.py index 2166ef50..3259e7df 100644 --- a/meshroom/core/graph.py +++ b/meshroom/core/graph.py @@ -214,6 +214,7 @@ class Node(BaseObject): self._name = None # type: str self.graph = None # type: Graph self.nodeDesc = pg.nodesDesc[nodeDesc]() + self._cmdVars = {} self._attributes = Model(parent=self) self.attributesPerUid = defaultdict(set) self._initFromDesc()