##// END OF EJS Templates
dirstate: properly update `_lastnormaltime` in `update_file_p1`...
marmoute -
r48496:ff481c23 default
parent child Browse files
Show More
@@ -552,6 +552,14 b' class dirstate(object):'
552 possibly_dirty=possibly_dirty,
552 possibly_dirty=possibly_dirty,
553 parentfiledata=parentfiledata,
553 parentfiledata=parentfiledata,
554 )
554 )
555 if (
556 parentfiledata is not None
557 and parentfiledata[2] > self._lastnormaltime
558 ):
559 # Remember the most recent modification timeslot for status(),
560 # to make sure we won't miss future size-preserving file content
561 # modifications that happen within the same timeslot.
562 self._lastnormaltime = parentfiledata[2]
555
563
556 @requires_parents_change
564 @requires_parents_change
557 def update_file(
565 def update_file(
General Comments 0
You need to be logged in to leave comments. Login now