sparse: use `update_file` instead of `drop`
authorPierre-Yves David <pierre-yves.david@octobus.net>
Mon, 19 Jul 2021 09:08:54 +0200
changeset 47748 000ea893aad3
parent 47747 452e7048293d
child 47749 068e09499d4e
sparse: use `update_file` instead of `drop` This is the newer, more semantic API. Differential Revision: https://phab.mercurial-scm.org/D11190
mercurial/sparse.py
--- a/mercurial/sparse.py	Mon Jul 19 01:58:45 2021 +0200
+++ b/mercurial/sparse.py	Mon Jul 19 09:08:54 2021 +0200
@@ -283,7 +283,7 @@
 
     # Fix dirstate
     for file in dropped:
-        dirstate.drop(file)
+        dirstate.update_file(file, p1_tracked=False, wc_tracked=False)
 
     repo.vfs.unlink(b'tempsparse')
     repo._sparsesignaturecache.clear()