Add a closing ` to the logging statement

This was mistakenly not added to the previous commit.
This commit is contained in:
Richard Bowman 2024-01-15 20:42:54 +00:00
parent dca2d1fabb
commit e7a3003c47

View file

@ -845,7 +845,7 @@ class SmartScanThing(Thing):
self, logger: InvocationLogger, cmd: list[str],
) -> CompletedProcess:
"""Run a subprocess and log any output"""
logger.info(f"Running command in subprocess: `{' '.join(cmd)}")
logger.info(f"Running command in subprocess: `{' '.join(cmd)}`")
output = run(cmd, stdout=PIPE, stderr=PIPE, universal_newlines=True)
for pipe in [output.stdout, output.stderr]:
if pipe: