mercurial/dirstate.py
branchstable
changeset 19128 f4930b533d55
parent 19103 0176d0db4671
child 19137 1835de2d9c4b
child 19210 865beb849720
equal deleted inserted replaced
19117:a6542a670ece 19128:f4930b533d55
   698                 audit_path = scmutil.pathauditor(self._root)
   698                 audit_path = scmutil.pathauditor(self._root)
   699 
   699 
   700                 for nf in iter(visit):
   700                 for nf in iter(visit):
   701                     # Report ignored items in the dmap as long as they are not
   701                     # Report ignored items in the dmap as long as they are not
   702                     # under a symlink directory.
   702                     # under a symlink directory.
   703                     if ignore(nf) and audit_path.check(nf):
   703                     if audit_path.check(nf):
   704                         try:
   704                         try:
   705                             results[nf] = lstat(join(nf))
   705                             results[nf] = lstat(join(nf))
   706                         except OSError:
   706                         except OSError:
   707                             # file doesn't exist
   707                             # file doesn't exist
   708                             results[nf] = None
   708                             results[nf] = None