From 189d384c57491a74d2df4dc71f643b9be02ce039 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Tue, 4 Jan 2022 00:00:19 -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 6011f70..c9e9fd0 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("Escape character is '^]'.") + tel_conn.read_until(bytes("Escape character is '^]'.")) return tel_conn