From 5581816b426b308efe5d8b9e7c1d03d923acd05f Mon Sep 17 00:00:00 2001 From: Ilya Etingof Date: Tue, 12 Apr 2016 08:29:22 +0200 Subject: missing comma fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index feb87da4..accf1c68 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ if errorIndication: # SNMP engine errors print(errorIndication) else: if errorStatus: # SNMP agent errors - print(%s at %s' % (errorStatus.prettyPrint(), varBinds[int(errorIndex)-1] if errorIndex else '?')) + print('%s at %s' % (errorStatus.prettyPrint(), varBinds[int(errorIndex)-1] if errorIndex else '?')) else: for varBind in varBinds: # SNMP response contents print(' = '.join([x.prettyPrint() for x in varBind])) -- cgit v1.2.1