diff options
author | Walter Dörwald <walter@livinglogic.de> | 2003-07-15 10:34:02 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2003-07-15 10:34:02 (GMT) |
commit | c171172614f77190a6b729cd834c27a58eb9aa41 (patch) | |
tree | acecd645dbca2b574f2ce88914b6489a06a9f5a3 | |
parent | fe89cc186cc0a0d31f63ee0f174b394f2538c5a8 (diff) | |
download | cpython-c171172614f77190a6b729cd834c27a58eb9aa41.zip cpython-c171172614f77190a6b729cd834c27a58eb9aa41.tar.gz cpython-c171172614f77190a6b729cd834c27a58eb9aa41.tar.bz2 |
Make the prefix 7 spaces long, so the lines are properly aligned.
-rw-r--r-- | Lib/trace.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/trace.py b/Lib/trace.py index d896c6e..0f27273 100644 --- a/Lib/trace.py +++ b/Lib/trace.py @@ -309,7 +309,7 @@ class CoverageResults: n_hits += 1 n_lines += 1 elif rx_blank.match(line): - outfile.write(" ") + outfile.write(" ") else: # lines preceded by no marks weren't hit # Highlight them if so indicated, unless the line contains |