summaryrefslogtreecommitdiff
path: root/morphlib/plugins
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2012-10-18 12:24:27 +0100
committerSam Thursfield <sam.thursfield@codethink.co.uk>2012-10-18 12:24:27 +0100
commit2bcc7ba44734c73a4a80b40b80a42b1376af5e00 (patch)
tree24c47a885bdbf907b8f2b66e03dbf6f58050f579 /morphlib/plugins
parent1ff0d7088d6d800f26392850861d71bb2f14932c (diff)
parente1ee5840b7e3bb034894fb3a3450dbeaa655b73f (diff)
downloadmorph-2bcc7ba44734c73a4a80b40b80a42b1376af5e00.tar.gz
Merge branch 'samthursfield/morph-status-in-workspace-sorted'
Reviewed-By: Richard Maw <richard.maw@codethink.co.uk>
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 7fd30420..2c5d1847 100644
--- a/morphlib/plugins/branch_and_merge_plugin.py
+++ b/morphlib/plugins/branch_and_merge_plugin.py
@@ -1345,8 +1345,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