summaryrefslogtreecommitdiff
path: root/examples/v3arch/manager/nextgen.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/v3arch/manager/nextgen.py')
-rw-r--r--examples/v3arch/manager/nextgen.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/v3arch/manager/nextgen.py b/examples/v3arch/manager/nextgen.py
index 497438c..c729f5d 100644
--- a/examples/v3arch/manager/nextgen.py
+++ b/examples/v3arch/manager/nextgen.py
@@ -37,14 +37,14 @@ def cbFun(sendRequestHandle, errorIndication, errorStatus, errorIndex,
print errorIndication
return
if errorStatus:
- print errorStatus.prettyOut(errorStatus)
+ print errorStatus.prettyPrint()
return
for varBindRow in varBindTable:
for oid, val in varBindRow:
if val is None:
- print oid
+ print oid.prettyPrint()
else:
- print '%s = %s' % (oid, val.prettyOut(val))
+ print '%s = %s' % (oid.prettyPrint(), val.prettyPrint())
for oid, val in varBindTable[-1]:
if val is not None:
break