Mercurial > hg-stable
changeset 18892:46c0ca1ef7e1
debuglabelcomplete: compute active branch heads correctly
The previous computation was simply wrong.
author | Bryan O'Sullivan <bryano@fb.com> |
---|---|
date | Tue, 09 Apr 2013 09:40:40 -0700 |
parents | bd6aed2ad5ee |
children | 74ea61318ea8 ed46c2b98b0d |
files | mercurial/commands.py tests/test-completion.t |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Mon Apr 08 17:57:42 2013 -0500 +++ b/mercurial/commands.py Tue Apr 09 09:40:40 2013 -0700 @@ -2078,8 +2078,12 @@ labels = set() labels.update(t[0] for t in repo.tagslist()) - labels.update(repo[n].branch() for n in repo.heads()) labels.update(repo._bookmarks.keys()) + for heads in repo.branchmap().itervalues(): + for h in heads: + ctx = repo[h] + if not ctx.closesbranch(): + labels.add(ctx.branch()) completions = set() if not args: args = ['']