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:
authorGhostkeeper <rubend@tutanota.com>2020-05-29 18:42:18 +0300
committerGhostkeeper <rubend@tutanota.com>2020-05-29 18:42:18 +0300
commit1fb78d23a5e19174dd2810c6ed8044ccca8a2d65 (patch)
tree717f9f288b5996539b3527a43e43e859e4297100 /plugins/3MFWriter/ThreeMFWorkspaceWriter.py
parentda61096efe2f1613b7b054bd0630c2febb7eb829 (diff)
Remove usage of deprecated extruders property
Use extruderList instead. Done during Turbo Testing and Tooling.
Diffstat (limited to 'plugins/3MFWriter/ThreeMFWorkspaceWriter.py')
-rw-r--r--plugins/3MFWriter/ThreeMFWorkspaceWriter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py
index a7ee47dcf1..4201573c78 100644
--- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py
+++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py
@@ -51,7 +51,7 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter):
self._writeContainerToArchive(container, archive)
# Check if the machine has extruders and save all that data as well.
- for extruder_stack in global_stack.extruders.values():
+ for extruder_stack in global_stack.extruderList:
self._writeContainerToArchive(extruder_stack, archive)
for container in extruder_stack.getContainers():
self._writeContainerToArchive(container, archive)