##// END OF EJS Templates
dirstate.py: when comparing mtimes, use only the integer part....
Alexis S. L. Carvalho -
r2962:882e703e default
parent child Browse files
Show More
@@ -518,7 +518,7 b' class dirstate(object):'
518 518 if size >= 0 and (size != st.st_size
519 519 or (mode ^ st.st_mode) & 0100):
520 520 modified.append(fn)
521 elif time != st.st_mtime:
521 elif time != int(st.st_mtime):
522 522 lookup.append(fn)
523 523 elif list_clean:
524 524 clean.append(fn)
General Comments 0
You need to be logged in to leave comments. Login now