We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fff063a commit 7a3a504Copy full SHA for 7a3a504
pysnmp/proto/rfc1905.py
@@ -31,7 +31,7 @@ def prettyPrint(self, scope=0):
31
return 'No Such Object currently exists at this OID'
32
33
34
-noSuchObject = NoSuchObject()
+noSuchObject = NoSuchObject('')
35
36
37
class NoSuchInstance(univ.Null):
@@ -43,7 +43,7 @@ def prettyPrint(self, scope=0):
43
return 'No Such Instance currently exists at this OID'
44
45
46
-noSuchInstance = NoSuchInstance()
+noSuchInstance = NoSuchInstance('')
47
48
49
class EndOfMibView(univ.Null):
@@ -55,7 +55,7 @@ def prettyPrint(self, scope=0):
55
return 'No more variables left in this MIB View'
56
57
58
-endOfMibView = EndOfMibView()
+endOfMibView = EndOfMibView('')
59
60
61
# Made a separate class for better readability
0 commit comments