Skip to content

Commit

Permalink
post-process: fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidKorczynski committed Jan 10, 2022
1 parent 1be7ed3 commit 383a6fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions post-processing/fuzz_html.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ def create_html_report(

# Project overview
html_string += html_add_header_with_link("Project overview", 1, toc_list)
html_string += html_add_header_with_link"Project information", 2, toc_list)
html_string += html_add_header_with_link("Project information", 2, toc_list)

#############################################
# Reachability overview
Expand Down Expand Up @@ -545,7 +545,7 @@ def create_html_report(
l.info(" - Creating section with details about each fuzzer")
html_string += html_add_header_with_link("Fuzzer details", 1, toc_list)
for profile_idx in range(len(profiles)):
html_string += create_fuzzer_detailed_section(profile, toc_list, tables, profile_idx, project_profile, coverage_url, git_repo_url, basefolder)
html_string += create_fuzzer_detailed_section(profiles[profile_idx], toc_list, tables, profile_idx, project_profile, coverage_url, git_repo_url, basefolder)

#############################################
# Handle optional analyses
Expand Down

0 comments on commit 383a6fb

Please sign in to comment.