Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
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)