Fix bug
Fix crash when attempting to close a non-existent paramiko SSH connection
This commit is contained in:
parent
252617e4f2
commit
cee4d13837
@ -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"""
|
||||
|
Loading…
x
Reference in New Issue
Block a user