diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-02 10:08:32 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-02 10:08:32 -0500 |
commit | 57c5f5804585fda5b39b8cadf6acdeb70ba9ab8e (patch) | |
tree | 2a5af56b93b96950e9a5ce55e19340af4e54d4b3 /coverage/html.py | |
parent | 6912eb0f0943505e785fe26659031aca06afc8ef (diff) | |
download | python-coveragepy-git-57c5f5804585fda5b39b8cadf6acdeb70ba9ab8e.tar.gz |
A Numbers class to handle the interrelationships of counts and percentages, including in rolled-up presentations.
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 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. |