##// END OF EJS Templates
largefiles: remove a mutable default argument...
Pierre-Yves David -
r26336:ec2662b9 default
parent child Browse files
Show More
@@ -50,7 +50,7 def composenormalfilematcher(match, mani
50
50
51 def installnormalfilesmatchfn(manifest):
51 def installnormalfilesmatchfn(manifest):
52 '''installmatchfn with a matchfn that ignores all largefiles'''
52 '''installmatchfn with a matchfn that ignores all largefiles'''
53 def overridematch(ctx, pats=[], opts={}, globbed=False,
53 def overridematch(ctx, pats=(), opts={}, globbed=False,
54 default='relpath', badfn=None):
54 default='relpath', badfn=None):
55 match = oldmatch(ctx, pats, opts, globbed, default, badfn=badfn)
55 match = oldmatch(ctx, pats, opts, globbed, default, badfn=badfn)
56 return composenormalfilematcher(match, manifest)
56 return composenormalfilematcher(match, manifest)
General Comments 0
You need to be logged in to leave comments. Login now