From d30d6bb1f7996bbe1ae2a5dc6c5586737aad4e03 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Tue, 4 Jan 2022 00:02:37 -0500 Subject: [PATCH] Bugfix: Working on SDR RX --- gqrxHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gqrxHandler.py b/gqrxHandler.py index c9e9fd0..28a1802 100644 --- a/gqrxHandler.py +++ b/gqrxHandler.py @@ -9,7 +9,7 @@ class GQRXHandler(): def create_telnet_connection(self): tel_conn = Telnet(self.hostname, self.port) - tel_conn.read_until(bytes("Escape character is '^]'.")) + tel_conn.read_until(bytes("Escape character is '^]'.", 'utf-8')) return tel_conn