Mercurial > public > mercurial-scm > hg-stable
diff mercurial/pure/parsers.py @ 48175:d0081dbca442
dirstate-item: replace call to new_normal
The constructor is on its way out, so we inline the last relevant call before
dropping it.
Differential Revision: https://phab.mercurial-scm.org/D11607
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Fri, 01 Oct 2021 09:29:32 +0200 |
parents | 79ebbe19d9e3 |
children | 1ab4523afe12 |
line wrap: on
line diff
--- a/mercurial/pure/parsers.py Fri Oct 01 09:28:19 2021 +0200 +++ b/mercurial/pure/parsers.py Fri Oct 01 09:29:32 2021 +0200 @@ -157,7 +157,11 @@ parentfiledata=(mode, size, 42), ) else: - return cls.new_normal(mode, size, mtime) + return cls( + wc_tracked=True, + p1_tracked=True, + parentfiledata=(mode, size, mtime), + ) else: raise RuntimeError(b'unknown state: %s' % state)