summaryrefslogtreecommitdiff
path: root/test/option-k.py
diff options
context:
space:
mode:
authorCraig Rodrigues <rodrigc@FreeBSD.org>2017-03-11 04:21:48 -0800
committerCraig Rodrigues <rodrigc@FreeBSD.org>2017-03-11 04:21:48 -0800
commiteb5f77bf4885058dd5405c8447270f008d3cfae1 (patch)
tree06561dabd3afff6643adf92ec3146b495162669c /test/option-k.py
parente45ba445a1140cfa4d7836f54f2e6b8d9a5c7325 (diff)
downloadscons-eb5f77bf4885058dd5405c8447270f008d3cfae1.tar.gz
Remove 'b' from open, not needed py2/3
Diffstat (limited to 'test/option-k.py')
-rw-r--r--test/option-k.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option-k.py b/test/option-k.py
index a367c653..5cd9be9d 100644
--- a/test/option-k.py
+++ b/test/option-k.py
@@ -38,7 +38,7 @@ test.subdir('work1', 'work2', 'work3')
test.write('succeed.py', r"""
import sys
-file = open(sys.argv[1], 'wb')
+file = open(sys.argv[1], 'w')
file.write("succeed.py: %s\n" % sys.argv[1])
file.close()
sys.exit(0)