summaryrefslogtreecommitdiff
path: root/pysnmp/proto/secmod/rfc7860/auth/hmacsha2.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysnmp/proto/secmod/rfc7860/auth/hmacsha2.py')
-rw-r--r--pysnmp/proto/secmod/rfc7860/auth/hmacsha2.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pysnmp/proto/secmod/rfc7860/auth/hmacsha2.py b/pysnmp/proto/secmod/rfc7860/auth/hmacsha2.py
index a043be2c..219b90d6 100644
--- a/pysnmp/proto/secmod/rfc7860/auth/hmacsha2.py
+++ b/pysnmp/proto/secmod/rfc7860/auth/hmacsha2.py
@@ -82,8 +82,8 @@ class HmacSha2(base.AbstractAuthenticationService):
try:
mac = hmac.new(authKey.asOctets(), wholeMsg, self.__hashAlgo)
- except errind.ErrorIndication:
- raise error.StatusInformation(errorIndication=sys.exc_info()[1])
+ except errind.ErrorIndication as exc:
+ raise error.StatusInformation(errorIndication=exc)
# 7.3.1.4
mac = mac.digest()[:self.__digestLength]
@@ -111,8 +111,8 @@ class HmacSha2(base.AbstractAuthenticationService):
try:
mac = hmac.new(authKey.asOctets(), authenticatedWholeMsg, self.__hashAlgo)
- except errind.ErrorIndication:
- raise error.StatusInformation(errorIndication=sys.exc_info()[1])
+ except errind.ErrorIndication as exc:
+ raise error.StatusInformation(errorIndication=exc)
# 7.3.2.5
mac = mac.digest()[:self.__digestLength]