##// END OF EJS Templates
dirstate-item: use the properties in `contrib/dirstatenonnormalcheck.py`...
marmoute -
r48335:35295f5a default
parent child Browse files
Show More
@@ -18,7 +18,7 b' def nonnormalentries(dmap):'
18 18 """Compute nonnormal entries from dirstate's dmap"""
19 19 res = set()
20 20 for f, e in dmap.iteritems():
21 if e[0] != b'n' or e[3] == -1:
21 if e.state != b'n' or e.mtime == -1:
22 22 res.add(f)
23 23 return res
24 24
General Comments 0
You need to be logged in to leave comments. Login now