Bugfix: Working on SDR RX

This commit is contained in:
Logan Cusano
2022-01-04 00:02:37 -05:00
parent 189d384c57
commit d30d6bb1f7

View File

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