##// END OF EJS Templates
largefiles: remove a mutable default argument...
Pierre-Yves David -
r26342:46bd31ff default
parent child Browse files
Show More
@@ -728,7 +728,7 b' def overriderevert(orig, ui, repo, ctx, '
728
728
729 oldstandins = lfutil.getstandinsstate(repo)
729 oldstandins = lfutil.getstandinsstate(repo)
730
730
731 def overridematch(mctx, pats=[], opts={}, globbed=False,
731 def overridematch(mctx, pats=(), opts={}, globbed=False,
732 default='relpath', badfn=None):
732 default='relpath', badfn=None):
733 match = oldmatch(mctx, pats, opts, globbed, default, badfn=badfn)
733 match = oldmatch(mctx, pats, opts, globbed, default, badfn=badfn)
734 m = copy.copy(match)
734 m = copy.copy(match)
General Comments 0
You need to be logged in to leave comments. Login now