From 3918e3bc36ae2a0212badf1c1384090aa9d33f0b Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Mon, 16 Jan 2017 09:54:09 -0600 Subject: [PATCH] Fixed Typo --- confbridge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confbridge.py b/confbridge.py index 1a003e2..b24c498 100755 --- a/confbridge.py +++ b/confbridge.py @@ -222,7 +222,7 @@ class confbridgeIPSC(IPSC): # if ((_target['TGID'] != _target_status[_target['TS']]['RX_TGID']) and ((now - _target_status[_target['TS']]['RX_TIME']) < _target_system['LOCAL']['GROUP_HANGTIME'])): if _burst_data_type == BURST_DATA_TYPE['VOICE_HEAD']: - self._logger.info('(%s) Call not bridged to TGID%s, target active or in group hangtime: IPSC: %s, TS: %s, TGID: %s', self._system, int_id(_target['TGID']), _target['SYSTEM'], _target['_TS'], int_id(_target_status[_target['TS']]['RX_TGID'])) + self._logger.info('(%s) Call not bridged to TGID%s, target active or in group hangtime: IPSC: %s, TS: %s, TGID: %s', self._system, int_id(_target['TGID']), _target['SYSTEM'], _target['TS'], int_id(_target_status[_target['TS']]['RX_TGID'])) continue if ((_target['TGID'] != _target_status[_target['TS']]['TX_TGID']) and ((now - _target_status[_target['TS']]['TX_TIME']) < _target_system['LOCAL']['GROUP_HANGTIME'])): if _burst_data_type == BURST_DATA_TYPE['VOICE_HEAD']: