From 1bf629db2db51398694bed1ce2e31de6a8e5cfc5 Mon Sep 17 00:00:00 2001 From: Cort Buffington Date: Wed, 1 Aug 2018 11:59:16 -0500 Subject: [PATCH] Make it client/master agnostic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit changed HBSYSTEM class method call to reference “send_system”, not “send_clients”. This allows underlying hblink.py to decide if the system is a master or client and work appropriately. --- hb_parrot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hb_parrot.py b/hb_parrot.py index 8bf370a..e1e0e93 100755 --- a/hb_parrot.py +++ b/hb_parrot.py @@ -132,7 +132,7 @@ class parrot(HBSYSTEM): sleep(2) logger.info('(%s) Playing back transmission from subscriber: %s', self._system, int_id(_rf_src)) for i in self.CALL_DATA: - self.send_clients(i) + self.send_system(i) sleep(0.06) self.CALL_DATA = []