summaryrefslogtreecommitdiff
path: root/pysnmp/carrier
diff options
context:
space:
mode:
authorelie <elie>2015-10-16 17:09:16 +0000
committerelie <elie>2015-10-16 17:09:16 +0000
commit4c39ecc84f93c65b4eef72d745de09834873c179 (patch)
treedc8748645669f788b994de4fb1685d2166665aff /pysnmp/carrier
parent36e57b28ea4e5fb409764ae43c416bc3481ce8a4 (diff)
downloadpysnmp-git-4c39ecc84f93c65b4eef72d745de09834873c179.tar.gz
missing symbol error fixed
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: