diff --git a/pym/client/rsync.py b/pym/client/rsync.py index db3c7bb..3052147 100644 --- a/pym/client/rsync.py +++ b/pym/client/rsync.py @@ -83,6 +83,8 @@ class ProfileSyncer(): else: self.output = self.process.before self.process.close() - self.exitstatus = self.process.exitstatus + existatus = self.process.exitstatus + #error 24 - "files vanished" is not fatal + self.exitstatus = existatus if existatus != 24 else 0 yield 100 break