Skip to content

Commit

Permalink
fix euregio csvs save path
Browse files Browse the repository at this point in the history
  • Loading branch information
spjuhel committed Jul 5, 2024
1 parent 6257155 commit 2555ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boario_tools/mriot.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def euregio_convert_xlsx2csv(inpt, out_folder, office_exists):
old_path = Path(out_folder) / filename.replace(
".xlsb", "-{}.csv".format(filename.split("_")[1].split(".")[0])
)
new_path = new_filename
new_path = Path(out_folder) / new_filename
log.info(f"Executing: mv {old_path} {new_path}")
os.rename(old_path, new_path)

Expand Down

0 comments on commit 2555ae9

Please sign in to comment.