From 2aa619729fcf3cf0445308fb7882f907e60f6664 Mon Sep 17 00:00:00 2001 From: Alan Johnston Date: Thu, 22 Jan 2026 12:36:35 -0500 Subject: [PATCH] Update command query to remove 'sudo' Removed 'sudo' from the command query in transmit.py. --- transmit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transmit.py b/transmit.py index f0d00045..6ce9b149 100644 --- a/transmit.py +++ b/transmit.py @@ -549,7 +549,7 @@ if __name__ == "__main__": # query = ["su", "-c", "'timeout", "3", "sudo", "/home/pi/rpitx/rpitx", "-i-", "-m", "RF", "-f", "434.9e3'", "pi"] - query = ["sudo", "/home/pi/rpitx/rpitx", "-i-", "-m", "RF", "-f", "434.9e3"] + query = ["/home/pi/rpitx/rpitx", "-i-", "-m", "RF", "-f", "434.9e3"] try: result = subprocess.run(query, capture_output=True, text=True, check=True) print(f"Command run was: {query}")