# HG changeset patch # User Pierre-Yves David # Date 1626666062 -7200 # Node ID 936f26b9f1ccde73b84b625458613883e3388bb8 # Parent 4b7eb01db10bd2f0f04f6911169f18dc9054fd72 eol: use `set_possibly_dirty` instead of `normallookup` This is the newer, more semantic API. Differential Revision: https://phab.mercurial-scm.org/D11176 diff -r 4b7eb01db10b -r 936f26b9f1cc hgext/eol.py --- a/hgext/eol.py Sun Jul 18 22:50:02 2021 +0200 +++ b/hgext/eol.py Mon Jul 19 05:41:02 2021 +0200 @@ -442,7 +442,7 @@ continue # all normal files need to be looked at again since # the new .hgeol file specify a different filter - self.dirstate.normallookup(f) + self.dirstate.set_possibly_dirty(f) # Write the cache to update mtime and cache .hgeol with self.vfs(b"eol.cache", b"w") as f: f.write(hgeoldata)