diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-03-13 13:10:21 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-03-13 13:10:21 (GMT) |
commit | 8d600a70cdbdaf648e0ef5405cb8d321de12a4a2 (patch) | |
tree | 81ae1a2ff0983a567c5abad9f40cecc6efa79a30 | |
parent | 57f2bc39219ec1fdb609bb979294487512407963 (diff) | |
download | SCons-8d600a70cdbdaf648e0ef5405cb8d321de12a4a2.zip SCons-8d600a70cdbdaf648e0ef5405cb8d321de12a4a2.tar.gz SCons-8d600a70cdbdaf648e0ef5405cb8d321de12a4a2.tar.bz2 |
fix unicode usage for --debug=tree py2/3
-rw-r--r-- | src/engine/SCons/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Util.py b/src/engine/SCons/Util.py index 9d125ae..6d7b0a7 100644 --- a/src/engine/SCons/Util.py +++ b/src/engine/SCons/Util.py @@ -308,7 +308,7 @@ def print_tree(root, child_func, prune=0, showtags=0, margin=[0], visited=None): ' N = no clean\n' + ' H = no cache\n' + '\n') - sys.stdout.write(u(legend)) + sys.stdout.write(legend) tags = ['['] tags.append(' E'[IDX(root.exists())]) |