summaryrefslogtreecommitdiff
path: root/morphlib/plugins
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2012-10-18 12:02:38 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2012-10-18 12:23:50 +0100
commite1ee5840b7e3bb034894fb3a3450dbeaa655b73f (patch)
tree1f66d9994130ca26f73b293f568322618422c18b /morphlib/plugins
parentcf7ed1cb79d4862c92261ac57a27b082a8f10f84 (diff)
downloadmorph-e1ee5840b7e3bb034894fb3a3450dbeaa655b73f.tar.gz
morph status: Sort list of system branches in a workspace
Output needs to be stable, not least so that the test doesn't fail sporadically.
Diffstat (limited to 'morphlib/plugins')
-rw-r--r--morphlib/plugins/branch_and_merge_plugin.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/morphlib/plugins/branch_and_merge_plugin.py b/morphlib/plugins/branch_and_merge_plugin.py
index 384f0550..6d5f3b7c 100644
--- a/morphlib/plugins/branch_and_merge_plugin.py
+++ b/morphlib/plugins/branch_and_merge_plugin.py
@@ -1324,8 +1324,9 @@ class BranchAndMergePlugin(cliapp.Plugin):
if branch is None:
self.app.output.write("System branches in current workspace:\n")
- for dirname in self.walk_special_directories(
- workspace, special_subdir='.morph-system-branch'):
+ branch_dirs = sorted(self.walk_special_directories(
+ workspace, special_subdir='.morph-system-branch'))
+ for dirname in branch_dirs:
branch = self.get_branch_config(dirname, 'branch.name')
self.app.output.write(" %s\n" % branch)
return