Mercurial > hg
changeset 20260:586ec8fe1c3c
branchmap: remove silly line break
The line fit in 80 character limit without it. It is even shorter without it.
author | Pierre-Yves David <pierre-yves.david@ens-lyon.org> |
---|---|
date | Fri, 03 Jan 2014 17:06:07 -0800 |
parents | bb4aac9b048c |
children | 3fee302a48e6 |
files | mercurial/branchmap.py |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/branchmap.py Thu Jan 16 11:26:54 2014 +0100 +++ b/mercurial/branchmap.py Fri Jan 03 17:06:07 2014 -0800 @@ -268,8 +268,7 @@ latest = iterrevs.pop() if latest not in bheadrevs: continue - ancestors = set(cl.ancestors([latest], - bheadrevs[0])) + ancestors = set(cl.ancestors([latest], bheadrevs[0])) if ancestors: bheadrevs = [b for b in bheadrevs if b not in ancestors] self[branch] = [cl.node(rev) for rev in bheadrevs]