From 1d3872ba9104e68ac724ed646181b230229065ae Mon Sep 17 00:00:00 2001 From: Timothy Nunn Date: Fri, 5 Jun 2026 14:46:41 +0100 Subject: [PATCH] Correct file_prefix of IN.DAT not in cwd --- process/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process/main.py b/process/main.py index d6835f92c..ac0928d6f 100644 --- a/process/main.py +++ b/process/main.py @@ -366,7 +366,7 @@ def set_filenames(self, filepath_out): ).strip() self.set_input() data_structure.global_variables.output_prefix = ( - "" + f"{Path(self.filepath).as_posix().strip()}/" if not self.filename_prefix else Path(self.filepath, self.filename_prefix).as_posix().strip() )