diff options
author | Jason Kenny <dragon512@live.com> | 2019-12-06 17:00:25 (GMT) |
---|---|---|
committer | Jason Kenny <dragon512@live.com> | 2019-12-06 17:00:36 (GMT) |
commit | 16f42198ba3afe2e40b21c5627274fec48c8611e (patch) | |
tree | 528382c19dee09b14eab892a2f9c1b147f1470f5 /test | |
parent | 3e039f1b101f7d52b333e1c5d7f75d3984ff0551 (diff) | |
download | SCons-16f42198ba3afe2e40b21c5627274fec48c8611e.zip SCons-16f42198ba3afe2e40b21c5627274fec48c8611e.tar.gz SCons-16f42198ba3afe2e40b21c5627274fec48c8611e.tar.bz2 |
add py3 compatible print() functions
Diffstat (limited to 'test')
-rw-r--r-- | test/Command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Command.py b/test/Command.py index 380c171..7189d06 100644 --- a/test/Command.py +++ b/test/Command.py @@ -21,7 +21,6 @@ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # - __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" import TestSCons @@ -43,6 +42,7 @@ test.write('build.py', build_py) test.write(['expand_chdir_sub', 'subbuild.py'], build_py) test.write('SConstruct', """ +from __future__ import print_function import os import sys |