# HG changeset patch # User cmlenz # Date 1149427274 0 # Node ID c67532c7d0d254e57b06fb97a1e93fd8380bb13f # Parent 2ffab7963b8dc025d2e9115d1feb34b55d43b964 Use "-" instead of "0" to mark a non-code line in `` reports, just as the new `` command does. diff --git a/bitten/build/pythontools.py b/bitten/build/pythontools.py --- a/bitten/build/pythontools.py +++ b/bitten/build/pythontools.py @@ -200,7 +200,7 @@ lines.append('0') prev_hits = '0' elif idx not in code_lines: # Not a code line - lines.append('0') + lines.append('-') prev_hits = '0' else: # A code line not flagged by trace.py if prev_hits != '0':