From d1e7a25931f73d5acf41d89580355d29f1e7d977 Mon Sep 17 00:00:00 2001 From: elie Date: Fri, 14 Oct 2005 16:13:31 +0000 Subject: prettyOut() -> prettyPrint() --- examples/v3arch/manager/bulkgen.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'examples/v3arch/manager/bulkgen.py') diff --git a/examples/v3arch/manager/bulkgen.py b/examples/v3arch/manager/bulkgen.py index e87b2dc..1e2a4fe 100644 --- a/examples/v3arch/manager/bulkgen.py +++ b/examples/v3arch/manager/bulkgen.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 -- cgit v1.2.1