Skip to content
Snippets Groups Projects
Commit c2d5166e authored by Tamino Huxohl's avatar Tamino Huxohl
Browse files

fix filename storing in prepare_polar_maps

parent 24983eb3
No related branches found
No related tags found
No related merge requests found
......@@ -180,8 +180,8 @@ if __name__ == "__main__":
_ac = "ac" if row[headers.ac] else "nac"
_sc = "sc" if row[headers.sc] else "nsc"
_file = f"{row[headers.id]:04d}-{_ac}_{_sc}_{row[headers.type]}.png"
_file = os.path.join(args.images_dir, _file)
row[headers.file] = _file
_file = os.path.join(args.images_dir, _file)
if (
len(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment