1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

fixes for cli refactor

This commit is contained in:
Kelly Brazil
2022-10-08 09:04:04 -07:00
parent 4f294aa0ef
commit 8eab3c1590
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ env = Environment(loader=file_loader)
template = env.get_template('readme_template')
# output = template.render(jc=jc.cli.about_jc())
output = template.render(parsers=jc.lib.all_parser_info(),
info=jc.cli.about_jc())
info=jc.cli.JcCli.about_jc())
with open('README.md', 'w') as f:
f.write(output)