hgext/largefiles/overrides.py
changeset 31659 0eec36112e58
parent 31656 0192aa8626c1
child 31735 3e37b479ce2f
--- a/hgext/largefiles/overrides.py	Mon Mar 27 09:44:36 2017 +0900
+++ b/hgext/largefiles/overrides.py	Mon Mar 27 09:44:36 2017 +0900
@@ -736,7 +736,7 @@
         s = lfutil.lfdirstatestatus(lfdirstate, repo)
         lfdirstate.write()
         for lfile in s.modified:
-            lfutil.updatestandin(repo, lfutil.standin(lfile))
+            lfutil.updatestandin(repo, lfile, lfutil.standin(lfile))
         for lfile in s.deleted:
             fstandin = lfutil.standin(lfile)
             if (repo.wvfs.exists(fstandin)):
@@ -1417,7 +1417,7 @@
                 # in this case, content of standin file is meaningless
                 # (in dctx, lfile is unknown, or normal file)
                 continue
-            lfutil.updatestandin(repo, fstandin)
+            lfutil.updatestandin(repo, lfile, fstandin)
         # mark all clean largefiles as dirty, just in case the update gets
         # interrupted before largefiles and lfdirstate are synchronized
         for lfile in oldclean: