diff --git a/Cura/gui/projectPlanner.py b/Cura/gui/projectPlanner.py index 04513bd53e..538ea47c3a 100644 --- a/Cura/gui/projectPlanner.py +++ b/Cura/gui/projectPlanner.py @@ -163,7 +163,8 @@ class projectPlanner(wx.Frame): item.flipZ = cp.get(section, 'flipZ') == 'True' item.swapXZ = cp.get(section, 'swapXZ') == 'True' item.swapYZ = cp.get(section, 'swapYZ') == 'True' - item.extuder = int(cp.get(section, 'extruder'))-1 + if cp.has_option(section, 'extruder'): + item.extuder = int(cp.get(section, 'extruder'))-1 i += 1 self.list.append(item)