diff options
author | Chris Adams <chris@improbable.org> | 2009-11-19 14:50:08 -0500 |
---|---|---|
committer | Chris Adams <chris@improbable.org> | 2009-11-19 14:50:08 -0500 |
commit | a88a18c6d8715d1164674f7138f7c9fb6cc5b2ad (patch) | |
tree | 2dc4bf3d69acd7a3d6c91a37d681710b824b4d90 /coverage/html.py | |
parent | d449757838d272f6cbf23e07fddf18b5824adb26 (diff) | |
download | python-coveragepy-a88a18c6d8715d1164674f7138f7c9fb6cc5b2ad.tar.gz |
Better HTML reporting
imported patch TweakedReports
Diffstat (limited to 'coverage/html.py')
-rw-r--r-- | coverage/html.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/coverage/html.py b/coverage/html.py index 8c27472..146b389 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -50,11 +50,15 @@ class HtmlReporter(Reporter): # Create the once-per-directory files. shutil.copyfile( data_filename("htmlfiles/style.css"), - os.path.join(directory, "style.css") + os.path.join(directory, "style.css") ) shutil.copyfile( data_filename("htmlfiles/jquery-1.3.2.min.js"), - os.path.join(directory, "jquery-1.3.2.min.js") + os.path.join(directory, "jquery-1.3.2.min.js") + ) + shutil.copyfile( + data_filename("htmlfiles/jquery.tablesorter.min.js"), + os.path.join(directory, "jquery.tablesorter.min.js") ) def html_file(self, cu, analysis): |