diff options
author | William Deegan <bill@baddogconsulting.com> | 2018-11-01 23:08:13 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2018-11-01 23:08:13 (GMT) |
commit | 608ee5c478fa1cd97735e37e33129180e4f1115b (patch) | |
tree | 6197f9710e0955cd7418e5bd4b6507e9e65463b8 /test | |
parent | 75cb659bf55b83b49fb4852ad3f120f95834a9be (diff) | |
download | SCons-608ee5c478fa1cd97735e37e33129180e4f1115b.zip SCons-608ee5c478fa1cd97735e37e33129180e4f1115b.tar.gz SCons-608ee5c478fa1cd97735e37e33129180e4f1115b.tar.bz2 |
Fix m4.py test on windows
Diffstat (limited to 'test')
-rw-r--r-- | test/fixture/wrapper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixture/wrapper.py b/test/fixture/wrapper.py index bd8187c..55e133b 100644 --- a/test/fixture/wrapper.py +++ b/test/fixture/wrapper.py @@ -2,5 +2,5 @@ import os import sys if '--version' not in sys.argv and '-dumpversion' not in sys.argv: path = os.path.join(os.path.dirname(os.path.relpath(__file__)), 'wrapper.out') - open(path, 'w').write("wrapper.py\n") + open(path, 'wb').write("wrapper.py\n") os.system(" ".join(sys.argv[1:])) |