Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
LucR31 committed Feb 21, 2024
1 parent 7285525 commit 86b2acb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiida_flexpart/calculations/new_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 86b2acb

Please sign in to comment.