diff options
author | Craig Rodrigues <rodrigc@FreeBSD.org> | 2017-03-11 12:21:48 (GMT) |
---|---|---|
committer | Craig Rodrigues <rodrigc@FreeBSD.org> | 2017-03-11 12:21:48 (GMT) |
commit | 80aba339e2acac074840aedd0ceb8553ed77d127 (patch) | |
tree | 06561dabd3afff6643adf92ec3146b495162669c /test/option-j.py | |
parent | 055c8046afce036fdfad4bc8d60e4059da148f7d (diff) | |
download | SCons-80aba339e2acac074840aedd0ceb8553ed77d127.zip SCons-80aba339e2acac074840aedd0ceb8553ed77d127.tar.gz SCons-80aba339e2acac074840aedd0ceb8553ed77d127.tar.bz2 |
Remove 'b' from open, not needed py2/3
Diffstat (limited to 'test/option-j.py')
-rw-r--r-- | test/option-j.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option-j.py b/test/option-j.py index 69ef414..acd97f8 100644 --- a/test/option-j.py +++ b/test/option-j.py @@ -51,7 +51,7 @@ test = TestSCons.TestSCons() test.write('build.py', r""" import time import sys -file = open(sys.argv[1], 'wb') +file = open(sys.argv[1], 'w') file.write(str(time.time()) + '\n') time.sleep(1) file.write(str(time.time())) |