diff options
-rw-r--r-- | CHANGES.txt | 2 | ||||
-rw-r--r-- | coverage/html.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 802a53f4..c105a071 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -8,7 +8,7 @@ Version 3.5.1 - for-else constructs are understood better, and don't cause erroneous partial branch warnings. Fixes `issue 122`_. -- The number of partial branches reported on the HTML summary page was +- The number of partial branches reported on the HTML summary page was different than the number reported on the individual file pages. This is now fixed. diff --git a/coverage/html.py b/coverage/html.py index 2b8cedcb..9b951002 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -91,7 +91,7 @@ class HtmlReporter(Reporter): self.make_local_static_report_files() def make_local_static_report_files(self): - """ Make local instances of static files for HTML report. """ + """Make local instances of static files for HTML report.""" for static in self.STATIC_FILES: shutil.copyfile( data_filename("htmlfiles/" + static), |