diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-20 05:52:48 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-11-20 05:52:48 -0500 |
commit | 18b7a2a764c829d50fcf1aee65e962fd64c344a7 (patch) | |
tree | 94820ead6e1f8186f57cca6aae4ad322d3b2bf17 /coverage/html.py | |
parent | b2095dd2ca21f206a474aa722f7c7ebc83ebd5e4 (diff) | |
download | python-coveragepy-git-18b7a2a764c829d50fcf1aee65e962fd64c344a7.tar.gz |
Odd indentation, fix it.
Diffstat (limited to 'coverage/html.py')
-rw-r--r-- | coverage/html.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coverage/html.py b/coverage/html.py index 146b389b..5e480011 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -50,15 +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") + os.path.join(directory, "jquery.tablesorter.min.js") ) def html_file(self, cu, analysis): |