##// END OF EJS Templates
largefiles: remove confusing 'or None' from predicate...
Martin von Zweigbergk -
r23145:97b6e762 default
parent child Browse files
Show More
@@ -35,7 +35,7 b' def installnormalfilesmatchfn(manifest):'
35 35 m._fmap = set(m._files)
36 36 m._always = False
37 37 origmatchfn = m.matchfn
38 m.matchfn = lambda f: notlfile(f) and origmatchfn(f) or None
38 m.matchfn = lambda f: notlfile(f) and origmatchfn(f)
39 39 return m
40 40 oldmatch = installmatchfn(overridematch)
41 41
General Comments 0
You need to be logged in to leave comments. Login now