Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChrisTerBeke <c.terbeke@ultimaker.com>2018-01-09 15:48:20 +0300
committerChrisTerBeke <c.terbeke@ultimaker.com>2018-01-09 15:48:20 +0300
commit5936ebaa80636dc7d2189f47d6426685151cabb6 (patch)
tree85058846d412691a744034d6d23129899b467fdf /cura/OneAtATimeIterator.py
parent78b9a14007d4bd83432b7d7643d2d9a4fbd122e0 (diff)
Fix another case of scene node checking by subclass, related to CURA-4780
Diffstat (limited to 'cura/OneAtATimeIterator.py')
-rw-r--r--cura/OneAtATimeIterator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/OneAtATimeIterator.py b/cura/OneAtATimeIterator.py
index 44f8d2766a..755680e62f 100644
--- a/cura/OneAtATimeIterator.py
+++ b/cura/OneAtATimeIterator.py
@@ -18,7 +18,7 @@ class OneAtATimeIterator(Iterator.Iterator):
def _fillStack(self):
node_list = []
for node in self._scene_node.getChildren():
- if not type(node) is SceneNode:
+ if not issubclass(type(node), SceneNode):
continue
if node.callDecoration("getConvexHull"):