From 86b2acb87b155bd99a38a4d2e9724e63e532bb12 Mon Sep 17 00:00:00 2001 From: LucR31 Date: Wed, 21 Feb 2024 14:20:50 +0000 Subject: [PATCH] minor change --- aiida_flexpart/calculations/new_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiida_flexpart/calculations/new_plugin.py b/aiida_flexpart/calculations/new_plugin.py index fd61d89..e24bcd8 100644 --- a/aiida_flexpart/calculations/new_plugin.py +++ b/aiida_flexpart/calculations/new_plugin.py @@ -40,7 +40,7 @@ def prepare_for_submission(self, folder): with folder.open('file.csv','w') as f: for i,j in self.inputs.remote.items(): - f.write(f'{j.target_basepath}, {i}, date\n') + f.write(f'{j.target_basepath}, {i[:10].replace("_", "-")}, {i[10:]}\n') # Prepare a `CalcInfo` to be returned to the engine calcinfo = common.CalcInfo()