##// END OF EJS Templates
dirstate: handle dangling junctions on windows (issue2579)
Bryan O'Sullivan -
r17879:7b0b1da4 stable
parent child Browse files
Show More
@@ -673,7 +673,7 b' class dirstate(object):'
673 673 try:
674 674 entries = listdir(join(nd), stat=True, skip=skip)
675 675 except OSError, inst:
676 if inst.errno == errno.EACCES:
676 if inst.errno in (errno.EACCES, errno.ENOENT):
677 677 fwarn(nd, inst.strerror)
678 678 continue
679 679 raise
General Comments 0
You need to be logged in to leave comments. Login now