diff options
author | Walter Dörwald <walter@livinglogic.de> | 2003-07-15 10:34:02 +0000 |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2003-07-15 10:34:02 +0000 |
commit | bc7d818c69777bea8702cd4f708ddbf82382a24e (patch) | |
tree | 85e17927d8e1a91204bb4cc08f90f195462426f0 /Lib/trace.py | |
parent | 14a3905a96ccdb0f52a2cf31f0709500b0acecbb (diff) | |
download | cpython-bc7d818c69777bea8702cd4f708ddbf82382a24e.tar.gz |
Make the prefix 7 spaces long, so the lines are properly aligned.
Diffstat (limited to 'Lib/trace.py')
-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 d896c6e7cf..0f27273f5f 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 |