summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2018-11-01 23:08:13 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2018-11-01 23:08:13 (GMT)
commit608ee5c478fa1cd97735e37e33129180e4f1115b (patch)
tree6197f9710e0955cd7418e5bd4b6507e9e65463b8 /test
parent75cb659bf55b83b49fb4852ad3f120f95834a9be (diff)
downloadSCons-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.py2
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:]))