Skip to content

Commit

Permalink
Revert to exclusively underscores in file name
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitri-mcguckin committed Jan 2, 2024
1 parent d58b1f2 commit 93de182
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oresat_configs/scripts/gen_xtce.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def write_xtce(config: OreSatConfig, dir_path: str = "."):
# write
tree = ET.ElementTree(root)
ET.indent(tree, space=" ", level=0)
file_name = f"{config.oresat_id.name.lower().replace('_', '.')}.xtce"
file_name = f"{config.oresat_id.name.lower()}.xtce"
tree.write(f"{dir_path}/{file_name}", encoding="utf-8", xml_declaration=True)


Expand Down

0 comments on commit 93de182

Please sign in to comment.