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:
authorSimon Edwards <s.edwards@ultimaker.com>2016-10-31 18:03:40 +0300
committerSimon Edwards <s.edwards@ultimaker.com>2016-10-31 18:03:40 +0300
commit21f1b12ee89e2924d2005892ee7d76b08e1e8114 (patch)
tree1b6c53eab04d5f9c4b5306c014af96492c36ed58 /cura/QualityManager.py
parent41ed9661f602d001f48e4a330c12e2a44c03e977 (diff)
Internal docs.
CURA-2852 Activating customised material will not duplicate UM2+ profiles
Diffstat (limited to 'cura/QualityManager.py')
-rw-r--r--cura/QualityManager.py2
1 files changed, 1 insertions, 1 deletions
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)