summaryrefslogtreecommitdiff
path: root/pysnmp/carrier/asyncore
diff options
context:
space:
mode:
authorelie <elie>2005-10-09 09:58:48 +0000
committerelie <elie>2005-10-09 09:58:48 +0000
commit20e7544230118269ef70ed097c82e2c09d35287b (patch)
tree373542304ae17063db0902af876ecbf24d51cb20 /pysnmp/carrier/asyncore
parent2ef6d66432dc958997df2634ee4c2d01795d156e (diff)
downloadpysnmp-git-20e7544230118269ef70ed097c82e2c09d35287b.tar.gz
socket-specific address syntax
Diffstat (limited to 'pysnmp/carrier/asyncore')
-rw-r--r--pysnmp/carrier/asyncore/dgram/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysnmp/carrier/asyncore/dgram/base.py b/pysnmp/carrier/asyncore/dgram/base.py
index ee1a855a..85276a3a 100644
--- a/pysnmp/carrier/asyncore/dgram/base.py
+++ b/pysnmp/carrier/asyncore/dgram/base.py
@@ -34,7 +34,7 @@ class DgramSocketTransport(AbstractSocketTransport):
def sendMessage(self, outgoingMessage, transportAddress):
self.__outQueue.append(
- (outgoingMessage, transportAddress)
+ (outgoingMessage, tuple(transportAddress)) # address syntax proto
)
# asyncore API