##// END OF EJS Templates
commit: avoid match.files() in conditions...
Martin von Zweigbergk -
r25274:14408524 default
parent child Browse files
Show More
@@ -1444,7 +1444,7 b' class localrepository(object):'
1444 status.removed.insert(0, '.hgsubstate')
1444 status.removed.insert(0, '.hgsubstate')
1445
1445
1446 # make sure all explicit patterns are matched
1446 # make sure all explicit patterns are matched
1447 if not force and match.files():
1447 if not force and (match.isexact() or match.prefix()):
1448 matched = set(status.modified + status.added + status.removed)
1448 matched = set(status.modified + status.added + status.removed)
1449
1449
1450 for f in match.files():
1450 for f in match.files():
General Comments 0
You need to be logged in to leave comments. Login now