From ef4514b8e0d3c2cd43c89c89968085e1dcc0a378 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Sun, 15 Dec 2019 16:55:19 +0000 Subject: [PATCH] updated commented debugging message at line #355 to remove unnecessary type conversion for _seq --- hblink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hblink.py b/hblink.py index fa5aaba..bd2e94f 100755 --- a/hblink.py +++ b/hblink.py @@ -352,7 +352,7 @@ class HBSYSTEM(DatagramProtocol): _frame_type = (_bits & 0x30) >> 4 _dtype_vseq = (_bits & 0xF) # data, 1=voice header, 2=voice terminator; voice, 0=burst A ... 5=burst F _stream_id = _data[16:20] - #logger.debug('(%s) DMRD - Seqence: %s, RF Source: %s, Destination ID: %s', self._system, int_id(_seq), int_id(_rf_src), int_id(_dst_id)) + #logger.debug('(%s) DMRD - Seqence: %s, RF Source: %s, Destination ID: %s', self._system, _seq, int_id(_rf_src), int_id(_dst_id)) # ACL Processing if self._CONFIG['GLOBAL']['USE_ACL']: if not acl_check(_rf_src, self._CONFIG['GLOBAL']['SUB_ACL']):