##// END OF EJS Templates
largefiles: replace always() method, not _always field...
Martin von Zweigbergk -
r32387:4a23cdb3 default
parent child Browse files
Show More
@@ -42,7 +42,7 b' def composelargefilematcher(match, manif'
42 lfile = lambda f: lfutil.standin(f) in manifest
42 lfile = lambda f: lfutil.standin(f) in manifest
43 m._files = filter(lfile, m._files)
43 m._files = filter(lfile, m._files)
44 m._fileset = set(m._files)
44 m._fileset = set(m._files)
45 m._always = False
45 m.always = lambda: False
46 origmatchfn = m.matchfn
46 origmatchfn = m.matchfn
47 m.matchfn = lambda f: lfile(f) and origmatchfn(f)
47 m.matchfn = lambda f: lfile(f) and origmatchfn(f)
48 return m
48 return m
@@ -57,7 +57,7 b' def composenormalfilematcher(match, mani'
57 manifest or f in excluded)
57 manifest or f in excluded)
58 m._files = filter(notlfile, m._files)
58 m._files = filter(notlfile, m._files)
59 m._fileset = set(m._files)
59 m._fileset = set(m._files)
60 m._always = False
60 m.always = lambda: False
61 origmatchfn = m.matchfn
61 origmatchfn = m.matchfn
62 m.matchfn = lambda f: notlfile(f) and origmatchfn(f)
62 m.matchfn = lambda f: notlfile(f) and origmatchfn(f)
63 return m
63 return m
@@ -369,7 +369,7 b' def overridelog(orig, ui, repo, *pats, *'
369 m._files.append(standin)
369 m._files.append(standin)
370
370
371 m._fileset = set(m._files)
371 m._fileset = set(m._files)
372 m._always = False
372 m.always = lambda: False
373 origmatchfn = m.matchfn
373 origmatchfn = m.matchfn
374 def lfmatchfn(f):
374 def lfmatchfn(f):
375 lf = lfutil.splitstandin(f)
375 lf = lfutil.splitstandin(f)
General Comments 0
You need to be logged in to leave comments. Login now