summaryrefslogtreecommitdiff
path: root/pysnmp/proto/error.py
diff options
context:
space:
mode:
authorelie <elie>2005-06-27 12:42:22 +0000
committerelie <elie>2005-06-27 12:42:22 +0000
commit4547c57ff44dd7263c67470f1aa9b9fc7d6e26d0 (patch)
tree5fa9ffdc04ddf6507d0e394ea2bf55b9ab75c02c /pysnmp/proto/error.py
parent512e272f874fc397bb00bb261656729359f92f15 (diff)
downloadpysnmp-git-4547c57ff44dd7263c67470f1aa9b9fc7d6e26d0.tar.gz
minor syntax fixes followed pychecker report
Diffstat (limited to 'pysnmp/proto/error.py')
-rw-r--r--pysnmp/proto/error.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pysnmp/proto/error.py b/pysnmp/proto/error.py
index f812ae6e..00ac5a03 100644
--- a/pysnmp/proto/error.py
+++ b/pysnmp/proto/error.py
@@ -8,6 +8,7 @@ class ProtocolError(PySnmpError, PyAsn1Error): pass
class SnmpV3Error(ProtocolError): pass
class StatusInformation(SnmpV3Error):
def __init__(self, **kwargs):
+ SnmpV3Error.__init__(self)
# print kwargs
self.__errorIndication = kwargs
def __str__(self): return str(self.__errorIndication)