summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2011-03-15 19:20:21 -0400
committerNed Batchelder <ned@nedbatchelder.com>2011-03-15 19:20:21 -0400
commitcf6fbd6156e8717da1ce23c70cea93322e7e4bd6 (patch)
tree062749912e57ac36f7b976ad2ffd1af05e36db40
parent83a4a2a389f0bc0eee32c578dd7bda64c4f3e18b (diff)
parent43776062a15640c62d94d8a9c19edadb21a773be (diff)
downloadpython-coveragepy-git-cf6fbd6156e8717da1ce23c70cea93322e7e4bd6.tar.gz
Automated merge with ssh://bitbucket.org/ned/coveragepy
-rw-r--r--lab/trace_sample.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lab/trace_sample.py b/lab/trace_sample.py
index 6d616a51..2fec9424 100644
--- a/lab/trace_sample.py
+++ b/lab/trace_sample.py
@@ -7,12 +7,11 @@ def trace(frame, event, arg):
#if event == 'line':
global nest
- print "%s%s %s %d (%r)" % (
+ print "%s%s %s %d" % (
" " * nest,
event,
os.path.basename(frame.f_code.co_filename),
frame.f_lineno,
- arg
)
if event == 'call':