##// END OF EJS Templates
merge: pconvert paths in _unknowndirschecker before dirstate-normalizing...
Matt Harbison -
r37104:658b1d28 default
parent child Browse files
Show More
@@ -706,7 +706,8 b' class _unknowndirschecker(object):'
706 # Does the directory contain any files that are not in the dirstate?
706 # Does the directory contain any files that are not in the dirstate?
707 for p, dirs, files in repo.wvfs.walk(f):
707 for p, dirs, files in repo.wvfs.walk(f):
708 for fn in files:
708 for fn in files:
709 relf = repo.dirstate.normalize(repo.wvfs.reljoin(p, fn))
709 relf = util.pconvert(repo.wvfs.reljoin(p, fn))
710 relf = repo.dirstate.normalize(relf)
710 if relf not in repo.dirstate:
711 if relf not in repo.dirstate:
711 return f
712 return f
712 return None
713 return None
General Comments 0
You need to be logged in to leave comments. Login now