summaryrefslogtreecommitdiff
path: root/pysnmp/entity/rfc3413/ntforg.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysnmp/entity/rfc3413/ntforg.py')
-rw-r--r--pysnmp/entity/rfc3413/ntforg.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pysnmp/entity/rfc3413/ntforg.py b/pysnmp/entity/rfc3413/ntforg.py
index 19442b3a..263dbb79 100644
--- a/pysnmp/entity/rfc3413/ntforg.py
+++ b/pysnmp/entity/rfc3413/ntforg.py
@@ -87,8 +87,8 @@ class NotificationOriginator(object):
reqPDU, True, timeoutInTicks, self.processResponsePdu,
(sendRequestHandle, cbFun, cbCtx)
)
- except error.StatusInformation:
- statusInformation = sys.exc_info()[1]
+ except error.StatusInformation as exc:
+ statusInformation = exc
debug.logger & debug.flagApp and debug.logger(
'processResponsePdu: sendRequestHandle %s: sendPdu() failed with %r ' % (
sendRequestHandle, statusInformation))
@@ -303,8 +303,8 @@ class NotificationOriginator(object):
(notificationHandle, cbFun, cbCtx)
)
- except error.StatusInformation:
- statusInformation = sys.exc_info()[1]
+ except error.StatusInformation as exc:
+ statusInformation = exc
debug.logger & debug.flagApp and debug.logger(
'sendVarBinds: sendRequestHandle %s: sendPdu() failed with %r' % (
sendRequestHandle, statusInformation))