##// END OF EJS Templates
largefiles: remove a mutable default argument...
Pierre-Yves David -
r26341:f46e7f3b default
parent child Browse files
Show More
@@ -617,8 +617,10 b' def overridecopy(orig, ui, repo, pats, o'
617 wlock = repo.wlock()
617 wlock = repo.wlock()
618
618
619 manifest = repo[None].manifest()
619 manifest = repo[None].manifest()
620 def overridematch(ctx, pats=(), opts={}, globbed=False,
620 def overridematch(ctx, pats=(), opts=None, globbed=False,
621 default='relpath', badfn=None):
621 default='relpath', badfn=None):
622 if opts is None:
623 opts = {}
622 newpats = []
624 newpats = []
623 # The patterns were previously mangled to add the standin
625 # The patterns were previously mangled to add the standin
624 # directory; we need to remove that now
626 # directory; we need to remove that now
General Comments 0
You need to be logged in to leave comments. Login now