From 05be8932ca89a0a027d963f4da5a731fe2e4ff1e Mon Sep 17 00:00:00 2001 From: Yann Lanthony Date: Mon, 23 Oct 2017 19:25:46 +0200 Subject: [PATCH] [graph] fix call to property nodeType --- meshroom/core/graph.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meshroom/core/graph.py b/meshroom/core/graph.py index a2e726b6..99406bdc 100644 --- a/meshroom/core/graph.py +++ b/meshroom/core/graph.py @@ -335,7 +335,8 @@ class Node(BaseObject): self._initFromDesc() for k, v in kwargs.items(): self.attribute(k).value = v - self.status = StatusData(self.name, self.nodeType()) + + self.status = StatusData(self.name, self.nodeType) self.statistics = stats.Statistics() self._subprocess = None