From e7a3003c4712de5421a58a54e9d324735a540f12 Mon Sep 17 00:00:00 2001 From: Richard Bowman Date: Mon, 15 Jan 2024 20:42:54 +0000 Subject: [PATCH] Add a closing ` to the logging statement This was mistakenly not added to the previous commit. --- src/openflexure_microscope_server/things/smart_scan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openflexure_microscope_server/things/smart_scan.py b/src/openflexure_microscope_server/things/smart_scan.py index 85240219..d86088e7 100644 --- a/src/openflexure_microscope_server/things/smart_scan.py +++ b/src/openflexure_microscope_server/things/smart_scan.py @@ -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: