Skip to content

Commit

Permalink
fix for #85 async client/server
Browse files Browse the repository at this point in the history
  • Loading branch information
gic committed Jul 5, 2018
1 parent 8545ee0 commit 0f07db4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pyrad/client_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,7 @@ def connection_lost(self, exc):
# noinspection PyUnusedLocal
def datagram_received(self, data, addr):
try:

reply = Packet(packet=data)
reply = Packet(packet=data, dict=self.client.dict)

if reply and reply.id in self.pending_requests:
req = self.pending_requests[reply.id]
Expand Down

0 comments on commit 0f07db4

Please sign in to comment.