summaryrefslogtreecommitdiffstats
blob: 13aa8f236b56b5b82f5a1d77da5fc0b925501066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
diff --git a/3rdParty/SCons/scons-local-2.0.0.final.0/SCons/Util.py b/3rdParty/SCons/scons-local-2.0.0.final.0/SCons/Util.py
index a9b3421..45278fa 100644
--- a/scons-local-2.0.0.final.0/SCons/Util.py
+++ b/scons-local-2.0.0.final.0/SCons/Util.py
@@ -179,7 +179,7 @@ def render_tree(root, child_func, prune=0, margin=[0], visited={}):
        or in the whole tree if prune.
     """
 
-    rname = str(root)
+    rname = repr(str(root))
 
     children = child_func(root)
     retval = ""
@@ -223,7 +223,7 @@ def print_tree(root, child_func, prune=0, showtags=0, margin=[0], visited={}):
        or in the whole tree if prune.
     """
 
-    rname = str(root)
+    rname = repr(str(root))
 
     if showtags: