Show More
@@ -678,8 +678,7 b' def addremove(repo, pats=[], opts={}, dr' | |||||
678 | ctx = repo[None] |
|
678 | ctx = repo[None] | |
679 | dirstate = repo.dirstate |
|
679 | dirstate = repo.dirstate | |
680 | walkresults = dirstate.walk(m, sorted(ctx.substate), True, False) |
|
680 | walkresults = dirstate.walk(m, sorted(ctx.substate), True, False) | |
681 | for abs in walkresults: |
|
681 | for abs, st in walkresults.iteritems(): | |
682 | st = walkresults[abs] |
|
|||
683 | dstate = dirstate[abs] |
|
682 | dstate = dirstate[abs] | |
684 | if dstate == '?' and audit_path.check(abs): |
|
683 | if dstate == '?' and audit_path.check(abs): | |
685 | unknown.append(abs) |
|
684 | unknown.append(abs) |
General Comments 0
You need to be logged in to leave comments.
Login now