Show More
@@ -703,7 +703,11 b' class dirstate(object):' | |||
|
703 | 703 | # Report ignored items in the dmap as long as they are not |
|
704 | 704 | # under a symlink directory. |
|
705 | 705 | if ignore(nf) and audit_path.check(nf): |
|
706 | results[nf] = util.statfiles([join(nf)])[0] | |
|
706 | try: | |
|
707 | results[nf] = lstat(join(nf)) | |
|
708 | except OSError: | |
|
709 | # file doesn't exist | |
|
710 | results[nf] = None | |
|
707 | 711 | else: |
|
708 | 712 | # It's either missing or under a symlink directory |
|
709 | 713 | results[nf] = None |
General Comments 0
You need to be logged in to leave comments.
Login now