diff options
Diffstat (limited to 'src/conf_mode/vrf.py')
-rwxr-xr-x | src/conf_mode/vrf.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/conf_mode/vrf.py b/src/conf_mode/vrf.py index a39366126..dd4b337e6 100755 --- a/src/conf_mode/vrf.py +++ b/src/conf_mode/vrf.py @@ -54,8 +54,7 @@ def _cmd(command): try: check_call(command.split()) except CalledProcessError as e: - pass - raise ConfigError(f'Error operationg on VRF: {e}') + raise ConfigError(f'Error changing VRF: {e}') def interfaces_with_vrf(match): matched = [] |