--- a/hgext/largefiles/overrides.py Wed May 17 23:54:43 2017 -0700
+++ b/hgext/largefiles/overrides.py Thu May 18 09:04:37 2017 -0700
@@ -41,7 +41,7 @@
m = copy.copy(match)
lfile = lambda f: lfutil.standin(f) in manifest
m._files = filter(lfile, m._files)
- m._fileroots = set(m._files)
+ m._fileset = set(m._files)
m._always = False
origmatchfn = m.matchfn
m.matchfn = lambda f: lfile(f) and origmatchfn(f)
@@ -56,7 +56,7 @@
notlfile = lambda f: not (lfutil.isstandin(f) or lfutil.standin(f) in
manifest or f in excluded)
m._files = filter(notlfile, m._files)
- m._fileroots = set(m._files)
+ m._fileset = set(m._files)
m._always = False
origmatchfn = m.matchfn
m.matchfn = lambda f: notlfile(f) and origmatchfn(f)
@@ -368,7 +368,7 @@
elif m._files[i] not in ctx and repo.wvfs.isdir(standin):
m._files.append(standin)
- m._fileroots = set(m._files)
+ m._fileset = set(m._files)
m._always = False
origmatchfn = m.matchfn
def lfmatchfn(f):
@@ -644,7 +644,7 @@
m = copy.copy(match)
lfile = lambda f: lfutil.standin(f) in manifest
m._files = [lfutil.standin(f) for f in m._files if lfile(f)]
- m._fileroots = set(m._files)
+ m._fileset = set(m._files)
origmatchfn = m.matchfn
def matchfn(f):
lfile = lfutil.splitstandin(f)
@@ -767,7 +767,7 @@
else:
matchfiles.append(f)
m._files = matchfiles
- m._fileroots = set(m._files)
+ m._fileset = set(m._files)
origmatchfn = m.matchfn
def matchfn(f):
lfile = lfutil.splitstandin(f)