From 513bd4f84ae7620bcb521c47f84be64d59c5c8a5 Mon Sep 17 00:00:00 2001 From: Jack Ha Date: Mon, 9 Jul 2018 14:36:38 +0200 Subject: [PATCH] Renamed packageContainerIds to getPackageContainerIds. CURA-5389 --- cura/CuraPackageManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraPackageManager.py b/cura/CuraPackageManager.py index 2a4f62e5fe..ff93c2b010 100644 --- a/cura/CuraPackageManager.py +++ b/cura/CuraPackageManager.py @@ -25,7 +25,7 @@ class CuraPackageManager(PackageManager): # It loops through all the package contents and see if some of the ids are used. # The list consists of 3-tuples: (global_stack, extruder_nr, container_id) def packageUsed(self, package_id: str): - ids = self.packageContainerIds(package_id) + ids = self.getPackageContainerIds(package_id) container_stacks = ContainerRegistry.getInstance().findContainerStacks() global_stacks = [container_stack for container_stack in container_stacks if isinstance(container_stack, GlobalStack)] machine_with_materials = []