Mercurial > hg
changeset 32246:7e79373263ab
merge: use repo.wvfs.setflags() instead of util.setflags()
Most merge.py code goes through the vfs instead of maniulating
files directly, so let's do the same here.
author | Phil Cohen <phillco@fb.com> |
---|---|
date | Thu, 11 May 2017 18:38:43 -0700 |
parents | 3a755652ce3a |
children | e05cfb4a6a8e |
files | mercurial/merge.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/merge.py Fri May 12 11:20:25 2017 -0700 +++ b/mercurial/merge.py Thu May 11 18:38:43 2017 -0700 @@ -1288,7 +1288,7 @@ progress(_updating, z, item=f, total=numupdates, unit=_files) flags, = args audit(f) - util.setflags(repo.wjoin(f), 'l' in flags, 'x' in flags) + repo.wvfs.setflags(f, 'l' in flags, 'x' in flags) updated += 1 # the ordering is important here -- ms.mergedriver will raise if the merge