From 21f1b12ee89e2924d2005892ee7d76b08e1e8114 Mon Sep 17 00:00:00 2001 From: Simon Edwards Date: Mon, 31 Oct 2016 16:03:40 +0100 Subject: [PATCH] Internal docs. CURA-2852 Activating customised material will not duplicate UM2+ profiles --- cura/QualityManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/QualityManager.py b/cura/QualityManager.py index 8918b818f1..0b4353442e 100644 --- a/cura/QualityManager.py +++ b/cura/QualityManager.py @@ -27,7 +27,7 @@ class QualityManager: # specified then the currently selected machine definition is used. # \param material_containers (Optional) \type{List[ContainerInstance]} If nothing is specified then # the current set of selected materials is used. - # \return the matching quality containers \type{List[ContainerInstance]} + # \return the matching quality container \type{ContainerInstance} def findQualityByName(self, quality_name, machine_definition=None, material_containers=None): criteria = {"type": "quality", "name": quality_name} result = self._getFilteredContainersForStack(machine_definition, material_containers, **criteria)