summaryrefslogtreecommitdiff
path: root/pysnmp/carrier
diff options
context:
space:
mode:
Diffstat (limited to 'pysnmp/carrier')
-rw-r--r--pysnmp/carrier/asyncio/dispatch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysnmp/carrier/asyncio/dispatch.py b/pysnmp/carrier/asyncio/dispatch.py
index 1a59db21..3886a44a 100644
--- a/pysnmp/carrier/asyncio/dispatch.py
+++ b/pysnmp/carrier/asyncio/dispatch.py
@@ -58,7 +58,7 @@ class AsyncioDispatcher(AbstractTransportDispatcher):
except KeyboardInterrupt:
raise
except Exception:
- raise error.PySnmpError(';'.join(traceback.format_exception(*sys.exc_info())))
+ raise PySnmpError(';'.join(traceback.format_exception(*sys.exc_info())))
def registerTransport(self, tDomain, transport):
if self.loopingcall is None and self.getTimerResolution() > 0: