From 7935441d919792e217361dbd13cdb7b3be36dda6 Mon Sep 17 00:00:00 2001 From: Laika Date: Sat, 3 Jul 2021 15:03:41 -0400 Subject: [PATCH] Sat interface now pulls from the right file --- interface/sat_infc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/sat_infc.py b/interface/sat_infc.py index 946fe89..189e7f8 100644 --- a/interface/sat_infc.py +++ b/interface/sat_infc.py @@ -44,7 +44,7 @@ def shell(reader, writer): writer.write("BAD OP COMMAND\r\n") yield from writer.drain() elif com[:3].upper() == "MTE" and len(com) == 3: - with open("../satsim/command_q", "r") as statfile: + with open("../satsim/status", "r") as statfile: mte = statfile.read() writer.write(mte + "\r\n") yield from writer.drain()