hgext/largefiles/overrides.py
changeset 49910 7b474609f199
parent 49854 cb3918e5bc77
child 49959 c166b212bdee
--- a/hgext/largefiles/overrides.py	Fri Jan 06 18:09:19 2023 +0000
+++ b/hgext/largefiles/overrides.py	Wed Jan 04 19:30:47 2023 +0000
@@ -511,10 +511,12 @@
 # largefiles. This makes the merge proceed and we can then handle this
 # case further in the overridden calculateupdates function below.
 @eh.wrapfunction(merge, b'_checkunknownfile')
-def overridecheckunknownfile(origfn, repo, wctx, mctx, f, f2=None):
-    if lfutil.standin(repo.dirstate.normalize(f)) in wctx:
+def overridecheckunknownfile(
+    origfn, dirstate, wvfs, dircache, wctx, mctx, f, f2=None
+):
+    if lfutil.standin(dirstate.normalize(f)) in wctx:
         return False
-    return origfn(repo, wctx, mctx, f, f2)
+    return origfn(dirstate, wvfs, dircache, wctx, mctx, f, f2)
 
 
 # The manifest merge handles conflicts on the manifest level. We want