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:
authorJack Ha <jackha@gmail.com>2018-07-09 15:36:38 +0300
committerJack Ha <jackha@gmail.com>2018-07-09 15:36:38 +0300
commit513bd4f84ae7620bcb521c47f84be64d59c5c8a5 (patch)
tree2e5e2fbd33961576403790e0406aa24b7ef805a5 /cura/CuraPackageManager.py
parentaa0c7d5f0ae52828c7d1680b5d37a7a62a1cb064 (diff)
Renamed packageContainerIds to getPackageContainerIds. CURA-5389
Diffstat (limited to 'cura/CuraPackageManager.py')
-rw-r--r--cura/CuraPackageManager.py2
1 files changed, 1 insertions, 1 deletions
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 = []