From ad19b8317cdaedbe70ed4305b340743291f74c69 Mon Sep 17 00:00:00 2001 From: Tristan Van Berkom Date: Mon, 9 Jan 2017 12:36:03 -0500 Subject: buildelement.py: No need to report a sorted unique key The core will sort it for us. --- buildstream/buildelement.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'buildstream/buildelement.py') diff --git a/buildstream/buildelement.py b/buildstream/buildelement.py index 486fe0bce..4f3af5ea6 100644 --- a/buildstream/buildelement.py +++ b/buildstream/buildelement.py @@ -54,7 +54,7 @@ class BuildElement(Element): for command_name, command_list in self.commands.items(): dictionary[command_name] = command_list - return sorted(dictionary) + return dictionary def _get_commands(self, node, name): list_node = self.node_get_member(node, list, name, default_value=[]) -- cgit v1.2.1