diff options
author | Shawn O. Pearce <sop@google.com> | 2009-03-02 12:38:13 -0800 |
---|---|---|
committer | Shawn O. Pearce <sop@google.com> | 2009-03-02 12:38:45 -0800 |
commit | 7c6c64d463d3baa361ef7bef8ff3149134819c96 (patch) | |
tree | 8cf4a5664c881ec6be67e0ca61a82c84a3a2d707 | |
parent | 3778f9d47e876aa15d3fdcc84ef21ec07c63402e (diff) | |
download | git-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |