##// END OF EJS Templates
util: handle EINVAL in _statfiles_clustered()...
Patrick Mezard -
r7137:0c63b87d default
parent child Browse files
Show More
@@ -865,7 +865,9 b' def _statfiles_clustered(files):'
865 # handle directory not found in Python version prior to 2.5
865 # handle directory not found in Python version prior to 2.5
866 # Python <= 2.4 returns native Windows code 3 in errno
866 # Python <= 2.4 returns native Windows code 3 in errno
867 # Python >= 2.5 returns ENOENT and adds winerror field
867 # Python >= 2.5 returns ENOENT and adds winerror field
868 if err.errno not in (3, errno.ENOENT, errno.ENOTDIR):
868 # EINVAL is raised if dir is not a directory.
869 if err.errno not in (3, errno.ENOENT, errno.EINVAL,
870 errno.ENOTDIR):
869 raise
871 raise
870 dmap = {}
872 dmap = {}
871 cache = dircache.setdefault(dir, dmap)
873 cache = dircache.setdefault(dir, dmap)
General Comments 0
You need to be logged in to leave comments. Login now