##// END OF EJS Templates
record: avoid modifying the matcher passed as a method parameter...
Matt Harbison -
r42456:19b95afb default
parent child Browse files
Show More
@@ -278,8 +278,8 b' def dorecord(ui, repo, commitfunc, cmdsu'
278 force = opts.get('force')
278 force = opts.get('force')
279 if not force:
279 if not force:
280 vdirs = []
280 vdirs = []
281 match = matchmod.badmatch(match, fail)
281 match.explicitdir = vdirs.append
282 match.explicitdir = vdirs.append
282 match.bad = fail
283
283
284 status = repo.status(match=match)
284 status = repo.status(match=match)
285
285
General Comments 0
You need to be logged in to leave comments. Login now