Add a closing ` to the logging statement
This was mistakenly not added to the previous commit.
This commit is contained in:
parent
dca2d1fabb
commit
e7a3003c47
1 changed files with 1 additions and 1 deletions
|
|
@ -845,7 +845,7 @@ class SmartScanThing(Thing):
|
||||||
self, logger: InvocationLogger, cmd: list[str],
|
self, logger: InvocationLogger, cmd: list[str],
|
||||||
) -> CompletedProcess:
|
) -> CompletedProcess:
|
||||||
"""Run a subprocess and log any output"""
|
"""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)
|
output = run(cmd, stdout=PIPE, stderr=PIPE, universal_newlines=True)
|
||||||
for pipe in [output.stdout, output.stderr]:
|
for pipe in [output.stdout, output.stderr]:
|
||||||
if pipe:
|
if pipe:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue