Browse Source

Merge branch '4.2'

Ghostkeeper 5 years ago
parent
commit
b3912fb930
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cura/Machines/MachineErrorChecker.py

+ 1 - 1
cura/Machines/MachineErrorChecker.py

@@ -127,7 +127,7 @@ class MachineErrorChecker(QObject):
 
         # Populate the (stack, key) tuples to check
         self._stacks_and_keys_to_check = deque()
-        for stack in [global_stack] + list(global_stack.extruders.values()):
+        for stack in global_stack.extruders.values():
             for key in stack.getAllKeys():
                 self._stacks_and_keys_to_check.append((stack, key))