##// END OF EJS Templates
fsmonitor: fix traceback after removal of nonnormalset (issue6600)...
Raphaël Gomès -
r49127:1421c75b default
parent child Browse files
Show More
@@ -333,7 +333,11 b' def overridewalk(orig, self, match, subr'
333 # for better performance, directly access the inner dirstate map if the
333 # for better performance, directly access the inner dirstate map if the
334 # standard dirstate implementation is in use.
334 # standard dirstate implementation is in use.
335 dmap = dmap._map
335 dmap = dmap._map
336 nonnormalset = self._map.nonnormalset
336 nonnormalset = {
337 f
338 for f, e in self._map.items()
339 if e.v1_state() != "n" or e.v1_mtime() == -1
340 }
337
341
338 copymap = self._map.copymap
342 copymap = self._map.copymap
339 getkind = stat.S_IFMT
343 getkind = stat.S_IFMT
General Comments 0
You need to be logged in to leave comments. Login now