Submitter | phabricator |
---|---|
Date | Oct. 16, 2019, 5:34 p.m. |
Message ID | <8e9c26dc2ec6b5c3633fe7b8f8252042@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/42414/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/copies.py b/mercurial/copies.py --- a/mercurial/copies.py +++ b/mercurial/copies.py @@ -207,12 +207,13 @@ return copies for i, c in enumerate(children[r]): childctx = repo[c] + p1, p2 = cl.parentrevs(c) p1copies, p2copies = childctx._copies - if r == childctx.p1().rev(): + if r == p1: parent = 1 childcopies = p1copies else: - assert r == childctx.p2().rev() + assert r == p2 parent = 2 childcopies = p2copies if not alwaysmatch: