aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/autodebugger_indenter.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/autodebugger_indenter.py b/tools/autodebugger_indenter.py
index 12530cfb..7c1de664 100644
--- a/tools/autodebugger_indenter.py
+++ b/tools/autodebugger_indenter.py
@@ -12,9 +12,7 @@ for i in range(len(lines)):
line = lines[i]
if line.startswith('AD:-2,'):
depth -= 1
- lines[i] = (' '*depth) + line
+ print str(depth) + '|' + line
if line.startswith('AD:-1,'):
depth += 1
-print '\n'.join(lines)
-