From b55d9e73a74b6d09468ddf23eecd0caa4c814b88 Mon Sep 17 00:00:00 2001 From: yxd92326 Date: Fri, 12 Sep 2025 10:32:32 +0100 Subject: [PATCH] When finalising an rsyncer set the end time to now --- src/murfey/client/rsync.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/murfey/client/rsync.py b/src/murfey/client/rsync.py index 0002cd488..813f990bf 100644 --- a/src/murfey/client/rsync.py +++ b/src/murfey/client/rsync.py @@ -199,6 +199,7 @@ def finalise( self.stop() self._remove_files = True self._notify = False + self._end_time = datetime.now() if thread: self.thread = threading.Thread( name=f"RSync finalisation {self._basepath}:{self._remote}",