branchmap: remove silly line break
authorPierre-Yves David <pierre-yves.david@ens-lyon.org>
Fri, 03 Jan 2014 17:06:07 -0800
changeset 20260 586ec8fe1c3c
parent 20259 bb4aac9b048c
child 20261 3fee302a48e6
branchmap: remove silly line break The line fit in 80 character limit without it. It is even shorter without it.
mercurial/branchmap.py
--- 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]