summaryrefslogtreecommitdiff
path: root/pysnmp/proto/rfc1905.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysnmp/proto/rfc1905.py')
-rw-r--r--pysnmp/proto/rfc1905.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/pysnmp/proto/rfc1905.py b/pysnmp/proto/rfc1905.py
index 4a229495..d5da3982 100644
--- a/pysnmp/proto/rfc1905.py
+++ b/pysnmp/proto/rfc1905.py
@@ -84,12 +84,13 @@ class VarBindList(univ.SequenceOf):
errorStatus = univ.Integer(
- namedValues=namedval.NamedValues(('noError', 0), ('tooBig', 1), ('noSuchName', 2), ('badValue', 3), ('readOnly', 4),
- ('genErr', 5), ('noAccess', 6), ('wrongType', 7), ('wrongLength', 8),
- ('wrongEncoding', 9), ('wrongValue', 10), ('noCreation', 11),
- ('inconsistentValue', 12), ('resourceUnavailable', 13), ('commitFailed', 14),
- ('undoFailed', 15), ('authorizationError', 16), ('notWritable', 17),
- ('inconsistentName', 18))
+ namedValues=namedval.NamedValues(
+ ('noError', 0), ('tooBig', 1), ('noSuchName', 2), ('badValue', 3), ('readOnly', 4),
+ ('genErr', 5), ('noAccess', 6), ('wrongType', 7), ('wrongLength', 8),
+ ('wrongEncoding', 9), ('wrongValue', 10), ('noCreation', 11),
+ ('inconsistentValue', 12), ('resourceUnavailable', 13), ('commitFailed', 14),
+ ('undoFailed', 15), ('authorizationError', 16), ('notWritable', 17),
+ ('inconsistentName', 18))
)