# HG changeset patch # User Pierre-Yves David # Date 1626652749 -7200 # Node ID e0e69a7d7af8c31ca2af29a7a40bdef449566a13 # Parent b9086ec4d28b3c76227eb5cd5b5b60e2490cfad1 sparse: use `update_file` instead of `normallookup` in refreshwdir This is the newer, more semantic API. Differential Revision: https://phab.mercurial-scm.org/D11179 diff -r b9086ec4d28b -r e0e69a7d7af8 mercurial/sparse.py --- a/mercurial/sparse.py Mon Jul 19 02:05:29 2021 +0200 +++ b/mercurial/sparse.py Mon Jul 19 01:59:09 2021 +0200 @@ -572,7 +572,9 @@ for file in lookup: # File exists on disk, and we're bringing it back in an unknown state. - dirstate.normallookup(file) + dirstate.update_file( + file, p1_tracked=True, wc_tracked=True, possibly_dirty=True + ) return added, dropped, lookup