summaryrefslogtreecommitdiff
path: root/examples/smi/agent/custom-managed-object.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/smi/agent/custom-managed-object.py')
-rw-r--r--examples/smi/agent/custom-managed-object.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/smi/agent/custom-managed-object.py b/examples/smi/agent/custom-managed-object.py
index 836a41e1..a5abda7c 100644
--- a/examples/smi/agent/custom-managed-object.py
+++ b/examples/smi/agent/custom-managed-object.py
@@ -41,10 +41,10 @@ if __name__ == '__main__':
mibInstrum = instrum.MibInstrumController(mibBuilder)
- print 'Remote manager read access to MIB instrumentation (table walk)'
+ print('Remote manager read access to MIB instrumentation (table walk)')
oid, val = (), None
while 1:
oid, val = mibInstrum.readNextVars(((oid, val),))[0]
if exval.endOfMib.isSameTypeWith(val):
break
- print oid, val.prettyPrint()
+ print(oid, val.prettyPrint())