Skip to content

Commit 0f07db4

Browse files
author
gic
committed
fix for #85 async client/server
1 parent 8545ee0 commit 0f07db4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pyrad/client_async.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,7 @@ def connection_lost(self, exc):
141141
# noinspection PyUnusedLocal
142142
def datagram_received(self, data, addr):
143143
try:
144-
145-
reply = Packet(packet=data)
144+
reply = Packet(packet=data, dict=self.client.dict)
146145

147146
if reply and reply.id in self.pending_requests:
148147
req = self.pending_requests[reply.id]

0 commit comments

Comments
 (0)