##// 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 def composelargefilematcher(match, manif
42 42 lfile = lambda f: lfutil.standin(f) in manifest
43 43 m._files = filter(lfile, m._files)
44 44 m._fileset = set(m._files)
45 m._always = False
45 m.always = lambda: False
46 46 origmatchfn = m.matchfn
47 47 m.matchfn = lambda f: lfile(f) and origmatchfn(f)
48 48 return m
@@ -57,7 +57,7 def composenormalfilematcher(match, mani
57 57 manifest or f in excluded)
58 58 m._files = filter(notlfile, m._files)
59 59 m._fileset = set(m._files)
60 m._always = False
60 m.always = lambda: False
61 61 origmatchfn = m.matchfn
62 62 m.matchfn = lambda f: notlfile(f) and origmatchfn(f)
63 63 return m
@@ -369,7 +369,7 def overridelog(orig, ui, repo, *pats, *
369 369 m._files.append(standin)
370 370
371 371 m._fileset = set(m._files)
372 m._always = False
372 m.always = lambda: False
373 373 origmatchfn = m.matchfn
374 374 def lfmatchfn(f):
375 375 lf = lfutil.splitstandin(f)
General Comments 0
You need to be logged in to leave comments. Login now