From a8d1559073db247cd5521cf7ef642e44aab1d2a8 Mon Sep 17 00:00:00 2001 From: phl0 Date: Thu, 1 Sep 2016 18:20:59 +0200 Subject: [PATCH] Revert "Testing integer boundaries" This reverts commit aa135c0e6bc4b9cb6a9d9f830b8b93ae44d3fcc7. --- hblink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hblink.py b/hblink.py index 92f163a..4d8bc69 100755 --- a/hblink.py +++ b/hblink.py @@ -246,7 +246,7 @@ class HBMASTER(DatagramProtocol): for _client in self._clients: if _client != _radio_id: self.send_client(_client, _data) - logger.debug('(%s) Packet repeated to client: %s (%s)', self._master, _client[1]['CALLSIGN'], int_id(_client)) + logger.debug('(%s) Packet repeated to client: %s (%s)', self._master, _client[int_id(_client)]['CALLSIGN'], int_id(_client)) # Userland actions -- typically this is the function you subclass for an application self.dmrd_received(_radio_id, _rf_src, _dst_id, _seq, _slot, _call_type, _frame_type, _stream_id, _data)