From 9190a4503da8740b69a7912abeb93d46d2bdd959 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 15 Nov 2009 17:53:24 -0500 Subject: Tabs are 8 spaces, as the Python docs dictate. Fixes issue #31. --- coverage/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coverage/html.py') diff --git a/coverage/html.py b/coverage/html.py index 98d32cd..8c27472 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -60,7 +60,7 @@ class HtmlReporter(Reporter): def html_file(self, cu, analysis): """Generate an HTML file for one source file.""" - source = cu.source_file().read().expandtabs(4) + source = cu.source_file().read() nums = analysis.numbers -- cgit v1.2.1