##// END OF EJS Templates
localrepo: call _prestatus hook instead of hardcoding dirstate knowledge
Sean Farley -
r21475:c6976a4a default
parent child Browse files
Show More
@@ -1550,9 +1550,7 b' class localrepository(object):'
1550 match.bad = bad
1550 match.bad = bad
1551
1551
1552 r = [[], [], [], [], [], [], []]
1552 r = [[], [], [], [], [], [], []]
1553 if working: # we need to scan the working dir
1553 r = ctx2._prestatus(ctx1, r, match, listignored, listclean, listunknown)
1554 r = ctx2._dirstatestatus(match=match, ignored=listignored,
1555 clean=listclean, unknown=listunknown)
1556
1554
1557 if not parentworking:
1555 if not parentworking:
1558 r = ctx2._buildstatus(ctx1, r, match, listignored, listclean,
1556 r = ctx2._buildstatus(ctx1, r, match, listignored, listclean,
General Comments 0
You need to be logged in to leave comments. Login now