Fix parsing option bug

This commit is contained in:
daniele 2023-06-25 10:12:07 +02:00
parent 35b87c859e
commit 8968fcd1a8
Signed by: fuxino
GPG Key ID: 981A2B2A3BBF5514
2 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
"""Init."""
__version__ = '4.0.0'
__version__ = '4.1.1'

View File

@ -766,7 +766,7 @@ def simple_backup():
ssh_host = args.ssh_host if args.ssh_host is not None else config_args['ssh_host']
ssh_user = args.ssh_user if args.ssh_user is not None else config_args['ssh_user']
ssh_keyfile = args.keyfile if args.keyfile is not None else config_args['ssh_keyfile']
remote_sudo = args.remote_sudo if args.remote_sudo is not None else config_args['remote_sudo']
remote_sudo = args.remote_sudo or config_args['remote_sudo']
if args.rsync_options is None:
rsync_options = ['-a', '-r', '-v', '-h', '-H', '-X', '-s', '--ignore-missing-args', '--mkpath']