Submitter | phabricator |
---|---|
Date | Nov. 22, 2019, 9:20 a.m. |
Message ID | <differential-rev-PHID-DREV-pymmcq5jgyhsfcqwms5b-req@mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/43416/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py --- a/mercurial/localrepo.py +++ b/mercurial/localrepo.py @@ -1531,7 +1531,7 @@ ] # dealing with some special values - if changeid == b'null': + if changeid == b'null' or changeid == nullrev: return context.changectx(self, nullrev, nullid) if changeid == b'tip': node = self.changelog.tip()