Submitter | phabricator |
---|---|
Date | Jan. 17, 2020, 3:15 p.m. |
Message ID | <83e6109c491384074f4e875a75b16997@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/44485/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -533,8 +533,11 @@ p1, p2 = cl.parentrevs(self._rev) if p2 == nullrev: - return [repo[p1]] - return [repo[p1], repo[p2]] + return [changectx(repo, p1, cl.node(p1), maybe_filtered=False)] + return [ + changectx(repo, p1, cl.node(p1), maybe_filtered=False), + changectx(repo, p2, cl.node(p2), maybe_filtered=False), + ] def changeset(self): c = self._changeset