summaryrefslogtreecommitdiff
path: root/pysnmp/carrier/twisted/dgram/udp.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysnmp/carrier/twisted/dgram/udp.py')
-rw-r--r--pysnmp/carrier/twisted/dgram/udp.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pysnmp/carrier/twisted/dgram/udp.py b/pysnmp/carrier/twisted/dgram/udp.py
index ac0f23f1..bdb93cdd 100644
--- a/pysnmp/carrier/twisted/dgram/udp.py
+++ b/pysnmp/carrier/twisted/dgram/udp.py
@@ -28,15 +28,15 @@ class UdpTwistedTransport(DgramTwistedTransport):
iface = ('', 0)
try:
self._lport = reactor.listenUDP(iface[1], self, iface[0])
- except Exception:
- raise error.CarrierError(sys.exc_info()[1])
+ except Exception as exc:
+ raise error.CarrierError(exc)
return self
def openServerMode(self, iface):
try:
self._lport = reactor.listenUDP(iface[1], self, iface[0])
- except Exception:
- raise error.CarrierError(sys.exc_info()[1])
+ except Exception as exc:
+ raise error.CarrierError(exc)
return self
def closeTransport(self):