summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-05-31 10:58:44 +0200
committerGitHub <noreply@github.com>2024-05-31 10:58:44 +0200
commita9fb0ac0ca5644db7bf9d75951b3cd97c3598c60 (patch)
tree407278eea36bb1f97affa0471a6dc01096e8a20c
parentdccbc313fe56ec774120e9d5045beba4488bcb12 (diff)
parentd5271e084cca8af54f425816916a821b0eab1a5a (diff)
downloadvyos-1x-a9fb0ac0ca5644db7bf9d75951b3cd97c3598c60.tar.gz
vyos-1x-a9fb0ac0ca5644db7bf9d75951b3cd97c3598c60.zip
Merge pull request #3564 from c-po/snmpv3-op-mode
op-mode: T683: remove superfluous debug print in snmpv3 display code
-rwxr-xr-xsrc/op_mode/snmp_v3.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/op_mode/snmp_v3.py b/src/op_mode/snmp_v3.py
index a1f76f0bc..abeb524dd 100755
--- a/src/op_mode/snmp_v3.py
+++ b/src/op_mode/snmp_v3.py
@@ -85,7 +85,7 @@ if __name__ == '__main__':
'user': [],
'view': []
}
-
+
if c.exists_effective('service snmp v3 group'):
for g in c.list_effective_nodes('service snmp v3 group'):
group = {
@@ -146,7 +146,6 @@ if __name__ == '__main__':
data['trap'].append(trap)
- print(data)
if args.all:
# Special case, print all templates !
tmpl = jinja2.Template(GROUP_OUTP_TMPL_SRC)