summaryrefslogtreecommitdiff
path: root/examples/v3arch/asyncore/agent/ntforg/v3-trap.py
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2016-04-01 22:58:56 +0200
committerIlya Etingof <etingof@gmail.com>2016-04-01 22:58:56 +0200
commit020791a97232849c9504024834906dd4a4ffb36c (patch)
tree6e5d69aa01877ee004efb77645b8148e586610cc /examples/v3arch/asyncore/agent/ntforg/v3-trap.py
parent9541f201e33cd613995cee2e7a7656aa687deb51 (diff)
downloadpysnmp-git-020791a97232849c9504024834906dd4a4ffb36c.tar.gz
pep8 reformatted
Diffstat (limited to 'examples/v3arch/asyncore/agent/ntforg/v3-trap.py')
-rw-r--r--examples/v3arch/asyncore/agent/ntforg/v3-trap.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/v3arch/asyncore/agent/ntforg/v3-trap.py b/examples/v3arch/asyncore/agent/ntforg/v3-trap.py
index b7dd29bb..e84b2b9f 100644
--- a/examples/v3arch/asyncore/agent/ntforg/v3-trap.py
+++ b/examples/v3arch/asyncore/agent/ntforg/v3-trap.py
@@ -61,7 +61,7 @@ config.addNotificationTarget(
# Allow NOTIFY access to Agent's MIB by this SNMP model (3), securityLevel
# and SecurityName
config.addContext(snmpEngine, '')
-config.addVacmUser(snmpEngine, 3, 'usr-md5-des', 'authPriv', (), (), (1,3,6))
+config.addVacmUser(snmpEngine, 3, 'usr-md5-des', 'authPriv', (), (), (1, 3, 6))
# *** SNMP engine configuration is complete by this line ***
@@ -73,13 +73,13 @@ ntfOrg.sendVarBinds(
snmpEngine,
# Notification targets
'my-notification', # notification targets
- None, '', # contextEngineId, contextName
+ None, '', # contextEngineId, contextName
# var-binds
[
# SNMPv2-SMI::snmpTrapOID.0 = SNMPv2-MIB::coldStart
- ((1,3,6,1,6,3,1,1,4,1,0), v2c.ObjectIdentifier((1,3,6,1,6,3,1,1,5,1))),
+ ((1, 3, 6, 1, 6, 3, 1, 1, 4, 1, 0), v2c.ObjectIdentifier((1, 3, 6, 1, 6, 3, 1, 1, 5, 1))),
# additional var-binds: ( (oid, value), ... )
- ((1,3,6,1,2,1,1,5,0), v2c.OctetString('Notificator Example'))
+ ((1, 3, 6, 1, 2, 1, 1, 5, 0), v2c.OctetString('Notificator Example'))
]
)