Submitter | phabricator |
---|---|
Date | Nov. 24, 2019, 11:27 a.m. |
Message ID | <a0af30121e2f4d5d1e67e976ad3392e2@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/43515/ |
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 @@ -530,8 +530,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