From 9c9ff1c8536d3066f2d94d3835664783494ed040 Mon Sep 17 00:00:00 2001 From: Chris Adams Date: Thu, 19 Nov 2009 14:50:08 -0500 Subject: Better HTML reporting imported patch TweakedReports --- coverage/html.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'coverage/html.py') diff --git a/coverage/html.py b/coverage/html.py index 8c274728..146b389b 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): -- cgit v1.2.1