Bugfix: Working on SDR RX

This commit is contained in:
Logan Cusano
2022-01-04 00:00:19 -05:00
parent eac3fc4e39
commit 189d384c57

View File

@@ -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