Fix crash when attempting to close a non-existent paramiko
SSH connection
This commit is contained in:
daniele 2023-06-03 16:14:36 +02:00
parent 252617e4f2
commit cee4d13837
Signed by: fuxino
GPG Key ID: 981A2B2A3BBF5514

View File

@ -269,7 +269,8 @@ class Backup:
elif count > 1:
logger.info('Removed %d backups', count)
self._ssh.close()
if self._ssh:
self._ssh.close()
def find_last_backup(self):
"""Get path of last backup (from last_backup symlink) for rsync --link-dest"""