Skip to content

Commit

Permalink
print message mentioning filename of module overview MarkDown file
Browse files Browse the repository at this point in the history
  • Loading branch information
boegel authored Aug 14, 2023
1 parent 8da6b1e commit 3bc8337
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/module_overview/module_overview.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,12 @@ def generate_general_overview() -> None:
Generate the general overview in a markdown file.
It generates a list of all the available software and indicates on which cluster it is available.
"""
md_file = MdUtils(file_name='module_overview.md', title='Overview of available modules per cluster')
md_fn = 'module_overview.md'
md_file = MdUtils(file_name=md_fn, title='Overview of available modules per cluster')
data = modules_ugent()
generate_module_table(data, md_file)
md_file.create_md_file()
print(f"Module overview created at {md_fn}")


if __name__ == '__main__':
Expand Down

0 comments on commit 3bc8337

Please sign in to comment.