Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-11 21:39:02 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-11 21:39:02 (GMT)
commitd4e6a1f812a5a73f4e3e495a7d2703b038592895 (patch)
treefbf4803d6a4523201727ffd33022f6400dc9d4e2 /tests
parent3736529c12cb8f0a480209554bcbd9de60eff0b1 (diff)
Actually indent node dump
Diffstat (limited to 'tests')
-rw-r--r--tests/tree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tree.py b/tests/tree.py
index c41a177..fe6d24f 100644
--- a/tests/tree.py
+++ b/tests/tree.py
@@ -65,7 +65,7 @@ class Node:
return [Node(accessible) for accessible in all_accessibles]
def _dump_accessible(self, node, depth):
- print "" * depth + str(node._accessible)
+ print " " * depth + str(node._accessible)
def _crawl_accessible(self, node, depth):
self._dump_accessible(node, depth)