diff options
author | William Deegan <bill@baddogconsulting.com> | 2015-06-14 23:33:38 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2015-06-14 23:33:38 (GMT) |
commit | 9d12770921fa229ce4716f4a210a467582f0920d (patch) | |
tree | 1a06d45cb37394f21a9e11539ab4ac5572488fe6 | |
parent | 29da60b30f4a33e836594b6249a8d1508d3d4ebc (diff) | |
download | SCons-9d12770921fa229ce4716f4a210a467582f0920d.zip SCons-9d12770921fa229ce4716f4a210a467582f0920d.tar.gz SCons-9d12770921fa229ce4716f4a210a467582f0920d.tar.bz2 |
rolling back unicode --tree=all patch
-rw-r--r-- | src/CHANGES.txt | 2 | ||||
-rw-r--r-- | src/engine/SCons/Util.py | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 42108de..ef4e016 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -34,8 +34,6 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER - Show --config choices if no argument is specified (PR #202). - Fixed build crash when XML toolchain isn't installed, and activated compression for ZIP archives. - - Fixed --tree=all print when build tree contains non-ascii - Node representation (PR #235). From Alexandre Feblot: - Fix for VersionedSharedLibrary under 'sunos' platform. diff --git a/src/engine/SCons/Util.py b/src/engine/SCons/Util.py index 6dd64ec..822d524 100644 --- a/src/engine/SCons/Util.py +++ b/src/engine/SCons/Util.py @@ -264,10 +264,10 @@ def print_tree(root, child_func, prune=0, showtags=0, margin=[0], visited={}): children = child_func(root) if prune and rname in visited and children: - sys.stdout.write(''.join(tags + margins + ['+-[', rname, ']']) + '\n') + sys.stdout.write(''.join(tags + margins + ['+-[', rname, ']']) + u'\n') return - sys.stdout.write(''.join(tags + margins + ['+-', rname]) + '\n') + sys.stdout.write(''.join(tags + margins + ['+-', rname]) + u'\n') visited[rname] = 1 |