From eda37bb7c84ee771eba7def26b6acb612d4fc441 Mon Sep 17 00:00:00 2001 From: Steve N4IRS Date: Wed, 5 Apr 2017 09:45:28 -0400 Subject: [PATCH] Fix self.playbackFromUDP per N4IRR --- ambe_audio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ambe_audio.py b/ambe_audio.py index db4aecd..880d2be 100755 --- a/ambe_audio.py +++ b/ambe_audio.py @@ -277,7 +277,7 @@ class ambeIPSC(IPSC): s.listen(5) # Now wait for client connection. _sock, addr = s.accept() # Establish connection with client. if int_id(self._tx_tg) > 0: # Test if we are allowed to transmit - self.playbackFromUDP(_sock, self._system) + self.playbackFromUDP(_sock) # SSZ was here. else: self.transmitDisabled(_sock, self._system) #tg is zero, so just eat the network trafic _sock.close()