Skip to content

Commit

Permalink
Fix minor rendering issue
Browse files Browse the repository at this point in the history
  • Loading branch information
DLu committed Feb 16, 2024
1 parent b8698b2 commit 5ba1d9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@
REPOS_FOLDER.mkdir(exist_ok=True)
for repo_id, repo_dict in tqdm(github_repos.items()):
name = '{org}/{repo}'.format(**repo_dict)
template = j2_env.get_template(subpage.get('template', 'basic_chart.html'))
template = j2_env.get_template('basic_chart.html')
filename = '{org}_{repo}.html'.format(**repo_dict)

repo_page = {'name': name, 'chart': charts.get_repo_issues(repos_db, name, repo_id)}
Expand Down

0 comments on commit 5ba1d9d

Please sign in to comment.