From 5cd6a65237f6d842a650ce24676b2aa8b3503dab Mon Sep 17 00:00:00 2001 From: Thomas Fish Date: Fri, 18 Oct 2024 15:34:52 +0100 Subject: [PATCH] Add newline after log header --- src/sim_recon/otfs.py | 2 +- src/sim_recon/recon.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sim_recon/otfs.py b/src/sim_recon/otfs.py index ef377bd..f8be442 100644 --- a/src/sim_recon/otfs.py +++ b/src/sim_recon/otfs.py @@ -166,7 +166,7 @@ def psf_to_otf( "This output can be recreated with the following command:", _create_sim_otf_call(tiff_path, **make_otf_kwargs), "-" * 80, - "The text below is the output from cudasirecon's makeotf", + "The text below is the output from cudasirecon's makeotf\n", ) ) ) diff --git a/src/sim_recon/recon.py b/src/sim_recon/recon.py index 6f86b9c..ed9e3b5 100644 --- a/src/sim_recon/recon.py +++ b/src/sim_recon/recon.py @@ -162,7 +162,7 @@ def reconstruct_from_processing_info(processing_info: ProcessingInfo) -> Process "Config used:", processing_info.config_path.read_text().strip(), sep, - "The text below is the output from cudasirecon", + "The text below is the output from cudasirecon\n", ) ) )