diff options
author | Steven Knight <knight@baldmt.com> | 2002-01-19 23:07:15 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-01-19 23:07:15 (GMT) |
commit | 964635ba4c25c748c2407d5d6cbd65efd0bab340 (patch) | |
tree | c77e336c80394ddd5789a634ad492db6db9613ac /test | |
parent | d24ad27cfaf6c60ab9bec33c7c67bde2a5f9c03a (diff) | |
download | SCons-964635ba4c25c748c2407d5d6cbd65efd0bab340.zip SCons-964635ba4c25c748c2407d5d6cbd65efd0bab340.tar.gz SCons-964635ba4c25c748c2407d5d6cbd65efd0bab340.tar.bz2 |
Windows NT portability in the ARGUMENTS.py test.
Diffstat (limited to 'test')
-rw-r--r-- | test/ARGUMENTS.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ARGUMENTS.py b/test/ARGUMENTS.py index 1a8b10d..3c6639f 100644 --- a/test/ARGUMENTS.py +++ b/test/ARGUMENTS.py @@ -29,7 +29,7 @@ import TestSCons test = TestSCons.TestSCons() test.write('SConstruct', """ -foo = open('foo.out', 'w') +foo = open('foo.out', 'wb') keys = ARGUMENTS.keys() keys.sort() for k in keys: |