Show More
@@ -18,7 +18,7 b' def nonnormalentries(dmap):' | |||||
18 | """Compute nonnormal entries from dirstate's dmap""" |
|
18 | """Compute nonnormal entries from dirstate's dmap""" | |
19 | res = set() |
|
19 | res = set() | |
20 | for f, e in dmap.iteritems(): |
|
20 | for f, e in dmap.iteritems(): | |
21 |
if e |
|
21 | if e.state != b'n' or e.mtime == -1: | |
22 | res.add(f) |
|
22 | res.add(f) | |
23 | return res |
|
23 | return res | |
24 |
|
24 |
General Comments 0
You need to be logged in to leave comments.
Login now