From 57c5f5804585fda5b39b8cadf6acdeb70ba9ab8e Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Mon, 2 Nov 2009 10:08:32 -0500 Subject: A Numbers class to handle the interrelationships of counts and percentages, including in rolled-up presentations. --- coverage/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/html.py') diff --git a/coverage/html.py b/coverage/html.py index 59bc995e..c653cf9c 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -93,7 +93,7 @@ class HtmlReporter(Reporter): n_exc = len(analysis.excluded) n_mis = len(analysis.missing) n_run = n_stm - n_mis - pc_cov = analysis.percent_covered() + pc_cov = analysis.numbers.percent_covered missing_branch_arcs = analysis.missing_branch_arcs() n_par = 0 # accumulated below. -- cgit v1.2.1