fix syntax

This commit is contained in:
2020-12-20 08:20:52 +01:00
parent 89a19edd6d
commit ac712da881

View File

@ -37,7 +37,7 @@ def do_zfs_command(args, zfs_cmd, pipecmd=None):
# check if we try to create a snapshot that already exists. This can happen
# if the script is run every minute and it takes more time than that to
# create all snapshots
if ctrl_proc.returncode == 1 && re_match(re_err_ok, err):
if ctrl_proc.returncode == 1 and re_match(re_err_ok, err):
pass
elif ctrl_proc.returncode != 0:
raise ZFSSnapshotError('Failed to execute {}: {}'.format(cmd, err))