diff options
author | William Blevins <wblevins001@gmail.com> | 2016-09-22 21:19:50 (GMT) |
---|---|---|
committer | William Blevins <wblevins001@gmail.com> | 2016-09-22 21:19:50 (GMT) |
commit | 0f0725d9215ca35e9b9995a9421ef83e35a338d8 (patch) | |
tree | da169366f448026e53f19b21c854a9c53be79644 /test/YACC | |
parent | efb7469bf68d57b590fa477f0ea2224d339f679f (diff) | |
download | SCons-0f0725d9215ca35e9b9995a9421ef83e35a338d8.zip SCons-0f0725d9215ca35e9b9995a9421ef83e35a338d8.tar.gz SCons-0f0725d9215ca35e9b9995a9421ef83e35a338d8.tar.bz2 |
Yet another batch of test fixes.
Diffstat (limited to 'test/YACC')
-rw-r--r-- | test/YACC/live.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/YACC/live.py b/test/YACC/live.py index f6733da..e125daa 100644 --- a/test/YACC/live.py +++ b/test/YACC/live.py @@ -43,7 +43,7 @@ if not yacc: test.write("wrapper.py", """import os import sys -open('%s', 'wb').write("wrapper.py\\n") +open('%s', 'wb').write(b"wrapper.py\\n") os.system(" ".join(sys.argv[1:])) """ % test.workpath('wrapper.out').replace('\\', '\\\\')) |