Submitter | phabricator |
---|---|
Date | Nov. 24, 2019, 12:59 a.m. |
Message ID | <433042367fd00eb6055042af6a0010c4@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/43499/ |
State | Not Applicable |
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' or changeid == nullrev: + if changeid == b'null' or changeid == nullrev or changeid == nullid: return context.changectx(self, nullrev, nullid, maybe_filtered=False) if changeid == b'tip': node = self.changelog.tip()