diff options
author | Unknown <dragon512@live.com> | 2020-06-15 11:30:47 -0500 |
---|---|---|
committer | Unknown <dragon512@live.com> | 2020-06-15 11:30:56 -0500 |
commit | c94a185bf1ff9a20e31f9ff68f65a1eed50760b1 (patch) | |
tree | 96e1a31a2f4fe36a0ad934d503e6033044f34832 /SCons/Node/Python.py | |
parent | 1b283809124ef39b130045eb6e00c8e8b1cce781 (diff) | |
download | scons-git-c94a185bf1ff9a20e31f9ff68f65a1eed50760b1.tar.gz |
Fix value node when used as part of a build on python3
Diffstat (limited to 'SCons/Node/Python.py')
-rw-r--r-- | SCons/Node/Python.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/SCons/Node/Python.py b/SCons/Node/Python.py index 68c6ee88b..ab005dfee 100644 --- a/SCons/Node/Python.py +++ b/SCons/Node/Python.py @@ -144,7 +144,8 @@ class Value(SCons.Node.Node): ###TODO: something reasonable about universal newlines contents = str(self.value) for kid in self.children(None): - contents = contents + kid.get_contents().decode() + # Get csig() value of child as this is more efficent + contents = contents + kid.get_csig() return contents def get_contents(self): |