summaryrefslogtreecommitdiff
path: root/lab/trace_sample.py
diff options
context:
space:
mode:
Diffstat (limited to 'lab/trace_sample.py')
-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':