Fix remaining references to instance_container._id

These must've slipped through the cracks.

Contributes to issue CURA-4243.
This commit is contained in:
Ghostkeeper 2017-10-30 15:07:46 +01:00
parent 839c8ccc52
commit 3a9c8d16a2
No known key found for this signature in database
GPG key ID: 5252B696FB5E7C7A
2 changed files with 3 additions and 3 deletions

View file

@ -74,7 +74,7 @@ class GlobalStack(CuraContainerStack):
return
if any(item.getId() == extruder.id for item in self._extruders.values()):
Logger.log("w", "Extruder [%s] has already been added to this stack [%s]", extruder.id, self._id)
Logger.log("w", "Extruder [%s] has already been added to this stack [%s]", extruder.id, self.getId())
return
self._extruders[position] = extruder