diff options
author | Christian Breunig <christian@breunig.cc> | 2024-05-31 09:48:52 +0200 |
---|---|---|
committer | Mergify <37929162+mergify[bot]@users.noreply.github.com> | 2024-05-31 09:00:02 +0000 |
commit | ce7076b5bce10cff72ac795c1505c00daa58af6e (patch) | |
tree | 5a179e2f615184338e30a2390290eb06f2fdc5fd /src | |
parent | 679538cb9d009ad68ecbf1083dea344bbf4493cf (diff) | |
download | vyos-1x-ce7076b5bce10cff72ac795c1505c00daa58af6e.tar.gz vyos-1x-ce7076b5bce10cff72ac795c1505c00daa58af6e.zip |
op-mode: T683: remove superfluous debug print in snmpv3 display code
This was a leftover from the early days.
(cherry picked from commit d5271e084cca8af54f425816916a821b0eab1a5a)
Diffstat (limited to 'src')
-rwxr-xr-x | src/op_mode/snmp_v3.py | 3 |
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) |