##// END OF EJS Templates
dirstate: properly update `_lastnormaltime` in `update_file`...
marmoute -
r48495:f98145ce default
parent child Browse files
Show More
@@ -620,6 +620,14 b' class dirstate(object):'
620 possibly_dirty=possibly_dirty,
620 possibly_dirty=possibly_dirty,
621 parentfiledata=parentfiledata,
621 parentfiledata=parentfiledata,
622 )
622 )
623 if (
624 parentfiledata is not None
625 and parentfiledata[2] > self._lastnormaltime
626 ):
627 # Remember the most recent modification timeslot for status(),
628 # to make sure we won't miss future size-preserving file content
629 # modifications that happen within the same timeslot.
630 self._lastnormaltime = parentfiledata[2]
623
631
624 def _addpath(
632 def _addpath(
625 self,
633 self,
General Comments 0
You need to be logged in to leave comments. Login now