summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce <sop@google.com>2009-03-02 12:38:13 -0800
committerShawn O. Pearce <sop@google.com>2009-03-02 12:38:45 -0800
commit7c6c64d463d3baa361ef7bef8ff3149134819c96 (patch)
tree8cf4a5664c881ec6be67e0ca61a82c84a3a2d707
parent3778f9d47e876aa15d3fdcc84ef21ec07c63402e (diff)
downloadgit-repo-7c6c64d463d3baa361ef7bef8ff3149134819c96.tar.gz
Fix repo prune output to sort by branch name
We didn't always sort the output. Now we do. Signed-off-by: Shawn O. Pearce <sop@google.com>
-rw-r--r--project.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/project.py b/project.py
index 4056860c..4780316c 100644
--- a/project.py
+++ b/project.py
@@ -810,7 +810,7 @@ class Project(object):
810 810
811 if cb and cb not in kill: 811 if cb and cb not in kill:
812 kill.append(cb) 812 kill.append(cb)
813 kill.sort() 813 kill.sort()
814 814
815 kept = [] 815 kept = []
816 for branch in kill: 816 for branch in kill: