Submitter | phabricator |
---|---|
Date | June 11, 2019, 12:51 p.m. |
Message ID | <differential-rev-PHID-DREV-nxhigzjrc6dx5x3zepne-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/40421/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/hgext/absorb.py b/hgext/absorb.py --- a/hgext/absorb.py +++ b/hgext/absorb.py @@ -871,7 +871,7 @@ patchlines = mdiff.splitnewlines(buf.getvalue()) # hunk.prettystr() will update hunk.removed a2 = a1 + hunk.removed - blines = [l[1:] for l in patchlines[1:] if l[0] != '-'] + blines = [l[1:] for l in patchlines[1:] if not l.startswith('-')] return path, (a1, a2, blines) def overlaydiffcontext(ctx, chunks):