diff options
Diffstat (limited to 'coverage/html.py')
-rw-r--r-- | coverage/html.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/coverage/html.py b/coverage/html.py index 34bf6a6..65bc25e 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -94,6 +94,8 @@ class HtmlReporter(Reporter): self.make_local_static_report_files() + return self.totals.pc_covered + def make_local_static_report_files(self): """Make local instances of static files for HTML report.""" # The files we provide must always be copied. @@ -245,7 +247,7 @@ class HtmlReporter(Reporter): files = self.files arcs = self.arcs - totals = sum([f['nums'] for f in files]) + self.totals = totals = sum([f['nums'] for f in files]) extra_css = self.extra_css self.write_html( |