diff options
author | Ilya Etingof <etingof@gmail.com> | 2018-02-19 00:41:28 +0100 |
---|---|---|
committer | Ilya Etingof <etingof@gmail.com> | 2018-02-19 00:41:28 +0100 |
commit | 24a7988766551038be2c65a33f10173a7a6d559d (patch) | |
tree | 60fbb40e681f20579611e83e6a2d445d27076bfb /pysnmp/proto/errind.py | |
parent | bc2654205b7b566bd4e2caa8c5c703ec03a140a0 (diff) | |
download | pysnmp-git-24a7988766551038be2c65a33f10173a7a6d559d.tar.gz |
strong crypto moved to pysnmpcrypto
Diffstat (limited to 'pysnmp/proto/errind.py')
-rw-r--r-- | pysnmp/proto/errind.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pysnmp/proto/errind.py b/pysnmp/proto/errind.py index d660af54..1629ecce 100644 --- a/pysnmp/proto/errind.py +++ b/pysnmp/proto/errind.py @@ -175,13 +175,13 @@ authenticationFailure = AuthenticationFailure('Authenticator mismatched') class UnsupportedAuthProtocol(ErrorIndication): pass -unsupportedAuthProtocol = UnsupportedAuthProtocol('Authentication protocol is not supprted') +unsupportedAuthProtocol = UnsupportedAuthProtocol('Authentication protocol is not supported') class UnsupportedPrivProtocol(ErrorIndication): pass -unsupportedPrivProtocol = UnsupportedPrivProtocol('Privacy protocol is not supprted') +unsupportedPrivProtocol = UnsupportedPrivProtocol('Privacy protocol is not supported') class UnknownSecurityName(ErrorIndication): |