##// END OF EJS Templates
windows: correctly pass a mode to S_IFMT in statfiles
Matt Mackall -
r18041:f0cfa27c default
parent child Browse files
Show More
@@ -232,7 +232,7 def statfiles(files):
232 232 try:
233 233 dmap = dict([(normcase(n), s)
234 234 for n, k, s in osutil.listdir(dir, True)
235 if getkind(s) in _wantedkinds])
235 if getkind(s.st_mode) in _wantedkinds])
236 236 except OSError, err:
237 237 # handle directory not found in Python version prior to 2.5
238 238 # Python <= 2.4 returns native Windows code 3 in errno
General Comments 0
You need to be logged in to leave comments. Login now