diff options
author | John Estabrook <jestabro@vyos.io> | 2023-05-11 20:34:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-11 20:34:47 -0500 |
commit | 25545b1e3cf2e94f3521e4ed80ce744f4b08683e (patch) | |
tree | d93ace5d92972db701565aa4f54c3d60457723c6 /python | |
parent | 59b8b3879a3f0f276501d01c1311b4b37cfb6c36 (diff) | |
parent | 00b48dfa0a1576242c5e67583375e8f4699be785 (diff) | |
download | vyos-1x-25545b1e3cf2e94f3521e4ed80ce744f4b08683e.tar.gz vyos-1x-25545b1e3cf2e94f3521e4ed80ce744f4b08683e.zip |
Merge pull request #1999 from dmbaturin/T5251-vrrp-group-ping-fix
vrrp: T5215: fix the commit error when health check is not configured
Diffstat (limited to 'python')
-rw-r--r-- | python/vyos/utils/dict.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/vyos/utils/dict.py b/python/vyos/utils/dict.py index 4afc9f54e..7c93deef6 100644 --- a/python/vyos/utils/dict.py +++ b/python/vyos/utils/dict.py @@ -253,4 +253,4 @@ def check_mutually_exclusive_options(d, keys, required=False): raise ValueError(f"Options {orig_keys} are mutually-exclusive but more than one of them is present: {orig_present_keys}") if required and (len(present_keys) < 1): - raise ValueError(f"At least one of the following options is required: {orig_present_keys}") + raise ValueError(f"At least one of the following options is required: {orig_keys}") |