diff options
Diffstat (limited to 'coverage/html.py')
-rw-r--r-- | coverage/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/html.py b/coverage/html.py index 21b5189e..d2409b38 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -63,7 +63,7 @@ class HtmlDataGeneration: """Produce the data needed for one file's report.""" if self.has_arcs: missing_branch_arcs = analysis.missing_branch_arcs() - arcs_executed = analysis.arcs_executed() + arcs_executed = analysis.arcs_executed if self.config.show_contexts: contexts_by_lineno = analysis.data.contexts_by_lineno(analysis.filename) |