Commit b99c9ba7 authored by Julien Muchembled's avatar Julien Muchembled

Sort catalog properties during BT installation

parent c9f102d7
...@@ -4266,11 +4266,9 @@ class CatalogKeyTemplateItemBase(BaseTemplateItem): ...@@ -4266,11 +4266,9 @@ class CatalogKeyTemplateItemBase(BaseTemplateItem):
setattr(catalog, self.key_list_attr, catalog_key_list) setattr(catalog, self.key_list_attr, catalog_key_list)
def _getUpdatedCatalogKeyList(self, catalog_key_list, new_key_list): def _getUpdatedCatalogKeyList(self, catalog_key_list, new_key_list):
catalog_key_list = list(catalog_key_list) # copy catalog_key_set = set(catalog_key_list) # copy
for key in new_key_list: catalog_key_set.update(new_key_list)
if key not in catalog_key_list: return sorted(catalog_key_set)
catalog_key_list.append(key)
return catalog_key_list
def uninstall(self, context, **kw): def uninstall(self, context, **kw):
catalog = _getCatalogValue(self) catalog = _getCatalogValue(self)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment