summaryrefslogtreecommitdiff
path: root/coverage/summary.py
diff options
context:
space:
mode:
Diffstat (limited to 'coverage/summary.py')
-rw-r--r--coverage/summary.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/summary.py b/coverage/summary.py
index 712febc..916b41e 100644
--- a/coverage/summary.py
+++ b/coverage/summary.py
@@ -20,7 +20,7 @@ class SummaryReporter(Reporter):
# Prepare the formatting strings
max_name = max([len(cu.name) for cu in self.code_units] + [5])
fmt_name = "%%- %ds " % max_name
- fmt_err = fmt_name + "%s: %s\n"
+ fmt_err = "%s %s: %s\n"
header = fmt_name % "Name" + " Stmts Exec Cover\n"
fmt_coverage = fmt_name + "% 6d % 6d % 5d%%\n"
if self.show_missing: