summaryrefslogtreecommitdiff
path: root/examples/v3arch/oneliner/manager/withmib/nextgen.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/v3arch/oneliner/manager/withmib/nextgen.py')
-rw-r--r--examples/v3arch/oneliner/manager/withmib/nextgen.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/v3arch/oneliner/manager/withmib/nextgen.py b/examples/v3arch/oneliner/manager/withmib/nextgen.py
index 8fde011..b78ad4e 100644
--- a/examples/v3arch/oneliner/manager/withmib/nextgen.py
+++ b/examples/v3arch/oneliner/manager/withmib/nextgen.py
@@ -28,7 +28,7 @@ if errorIndication:
else:
if errorStatus:
print '%s at %s\n' % (
- errorStatus.prettyOut(errorStatus),
+ errorStatus.prettyPrint(),
varBindTable[-1][int(errorIndex)-1]
)
else:
@@ -42,6 +42,6 @@ else:
)
print '%s::%s.%s = %s' % (
modName, symName,
- string.join(map(lambda v: v.prettyOut(v), indices), '.'),
- val.prettyOut(val)
+ string.join(map(lambda v: v.prettyPrint(), indices), '.'),
+ val.prettyPrint()
)