summaryrefslogtreecommitdiff
path: root/src/conf_mode
diff options
context:
space:
mode:
authorDmitriyEshenko <dmitriy.eshenko@vyos.io>2020-12-01 20:50:45 +0000
committerDmitriyEshenko <dmitriy.eshenko@vyos.io>2020-12-01 20:50:45 +0000
commit4405bacdd5ef756b3d257f6d5d84b50daae328b0 (patch)
treeb5ded34cf9fc8dd76eff98b0bdc72e8c730716df /src/conf_mode
parent962bb24187e2bc0ef94f413da0e9e99f45c94ffa (diff)
downloadvyos-1x-4405bacdd5ef756b3d257f6d5d84b50daae328b0.tar.gz
vyos-1x-4405bacdd5ef756b3d257f6d5d84b50daae328b0.zip
nat: T3102: Check key in dictionary
Diffstat (limited to 'src/conf_mode')
-rwxr-xr-xsrc/conf_mode/nat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/nat.py b/src/conf_mode/nat.py
index f5c023b81..1ccec3d2e 100755
--- a/src/conf_mode/nat.py
+++ b/src/conf_mode/nat.py
@@ -130,7 +130,7 @@ def verify(nat):
# no need to verify the CLI as NAT is going to be deactivated
return None
- if nat['helper_functions']:
+ if 'helper_functions' in nat:
if not (nat['pre_ct_ignore'] or nat['pre_ct_conntrack'] or nat['out_ct_ignore'] or nat['out_ct_conntrack']):
raise Exception('could not determine nftable ruleset handlers')