# HG changeset patch # User Pierre-Yves David # Date 2021-07-19 03:47:54 # Node ID 1f3a87a7a9b11bd91c67fae6d8cf62fd91e634e4 # Parent b0a39b666e2d2df2d35aa7766f96bc3e14652e31 largefile: use `update_file` for `synclfdirstate` "m" case This is the newer, more semantic API. Differential Revision: https://phab.mercurial-scm.org/D11167 diff --git a/hgext/largefiles/lfutil.py b/hgext/largefiles/lfutil.py --- a/hgext/largefiles/lfutil.py +++ b/hgext/largefiles/lfutil.py @@ -569,7 +569,9 @@ def synclfdirstate(repo, lfdirstate, lfi else: lfdirstate.update_file(lfile, p1_tracked=True, wc_tracked=True) elif state == b'm': - lfdirstate.normallookup(lfile) + lfdirstate.update_file( + lfile, p1_tracked=True, wc_tracked=True, merged=True + ) elif state == b'r': lfdirstate.update_file(lfile, p1_tracked=True, wc_tracked=False) elif state == b'a':