PossibleDefinitionIds from name only returns distinct names

It would sometimes return 3x the same id.
This commit is contained in:
Jaime van Kessel 2018-02-06 14:27:54 +01:00
parent fdfeeb5496
commit 08394c99d3

View file

@ -916,11 +916,11 @@ class XmlMaterialProfile(InstanceContainer):
else: else:
merged_name_parts.append(part) merged_name_parts.append(part)
id_list = [name.lower().replace(" ", ""), # simply removing all spaces id_list = {name.lower().replace(" ", ""), # simply removing all spaces
name.lower().replace(" ", "_"), # simply replacing all spaces with underscores name.lower().replace(" ", "_"), # simply replacing all spaces with underscores
"_".join(merged_name_parts), "_".join(merged_name_parts),
] }
id_list = list(id_list)
return id_list return id_list
## Gets a mapping from product names in the XML files to their definition ## Gets a mapping from product names in the XML files to their definition