Fix command output handling to return an empty string on error

This commit is contained in:
Edgar P. Burkhart 2025-03-09 20:13:09 +01:00
parent 8a6fb77de3
commit 1f5da172d6
Signed by: edpibu
GPG key ID: 9833D3C5A25BD227

View file

@ -351,6 +351,6 @@ class HassUserClient(HassClient):
def run_command(cmd: list[str]) -> Tuple[int, str]:
proc = run(cmd, capture_output=True)
if proc.returncode != 0:
return proc.returncode, "null"
return proc.returncode, ""
return proc.returncode, proc.stdout.decode("utf-8")