summaryrefslogtreecommitdiff
path: root/examples/v3arch/asyncore/agent/cmdrsp/custom-mib-controller.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/v3arch/asyncore/agent/cmdrsp/custom-mib-controller.py')
-rw-r--r--examples/v3arch/asyncore/agent/cmdrsp/custom-mib-controller.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/v3arch/asyncore/agent/cmdrsp/custom-mib-controller.py b/examples/v3arch/asyncore/agent/cmdrsp/custom-mib-controller.py
index 54aec899..1a03e725 100644
--- a/examples/v3arch/asyncore/agent/cmdrsp/custom-mib-controller.py
+++ b/examples/v3arch/asyncore/agent/cmdrsp/custom-mib-controller.py
@@ -53,8 +53,8 @@ snmpContext = context.SnmpContext(snmpEngine)
# any Managed Objects attached. It supports only GET's and
# always echos request var-binds in response.
class EchoMibInstrumController(instrum.AbstractMibInstrumController):
- def readVars(self, vars, acInfo=(None, None)):
- return [(ov[0], v2c.OctetString('You queried OID %s' % ov[0])) for ov in vars]
+ def readVars(self, varBinds, acInfo=(None, None)):
+ return [(ov[0], v2c.OctetString('You queried OID %s' % ov[0])) for ov in varBinds]
# Create a custom Management Instrumentation Controller and register at